what is a function prototype?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
When we use void main and int main?
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
1,1,5,17,61,217,?,?.
How many levels of pointers have?
Write a simple program to find the size of different basic data types in C.
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
code for concatination of 2 strings with out using library functions?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
Explain the difference between null pointer and void pointer.
which one is better structure or union?(other than the space occupied )