Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is a function prototype?

Answers were Sorted based on User's Feedback



what is a function prototype?..

Answer / chetna

it is the declaration of function which includes specifying
arguments and return type but does not include its body.
eg : int rev(int a);
here, rev is a function name of integer type and returns an
integer type value.

Is This Answer Correct ?    0 Yes 0 No

what is a function prototype?..

Answer / nashiinformaticssolutions

A function prototype declares the function's name, return type, and parameters without providing the actual implementation.

Is This Answer Correct ?    0 Yes 0 No

what is a function prototype?..

Answer / nashiinformaticssolutions

A declaration of a function that specifies its return type and parameters, e.g., int add(int, int);

Is This Answer Correct ?    0 Yes 0 No

what is a function prototype?..

Answer / glibwaresoftsolutions

A function prototype declares the function's name, return type, and parameters without providing the actual implementation.

Is This Answer Correct ?    0 Yes 0 No

what is a function prototype?..

Answer / hr@tgksolutions.com

A function prototype declares the function's name, return type, and parameters without providing the actual implementation.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+

1 Answers   Reliance,


Should I learn c before c++?

0 Answers  


Difference between constant pointer and pointer to a constant.

0 Answers   Huawei,


#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?

3 Answers   Huawei,


Why is c called a mid-level programming language?

0 Answers  


how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *

3 Answers  


How to removing white spces in c programming only bu using loops

2 Answers  


write a programming in c language, 1 3 5 7 9 11

2 Answers   NIIT,


Why is c still so popular?

0 Answers  


In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?

4 Answers  


how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

0 Answers  


In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.

0 Answers  


Categories