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 difference between strcmp & palindrome?
Why does everyone say not to use scanf? What should I use instead?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Explain function pointer with exapmles.
Convert the following expression to postfix and prefix (A+B) * (D-C)
What is the difference between constant pointer and pointer to a constant. Give examples.
What is p in text message?
what r the cpu registers r ther?
Will Macros support multiple arguments ?
what is the advantage of software development
Explain how do I determine whether a character is numeric, alphabetic, and so on?