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 |
What is property type c?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
What is a rvalue?
what will happen if you free a pointer twice after allocating memory dynamically ?
What are the different types of C instructions?
will u give me old quesrion papers for aptitude for L & t info tech?
Do you know the difference between exit() and _exit() function in c?
What is the purpose of type declarations?
What is pivot in c?
what is an array
What is data structure in c programming?
What do you mean by dynamic memory allocation in c? What functions are used?