What do you mean by funtion prototype?
Answer / Ankush Arora
A function prototype is a declaration that provides information about a function's return type, name, and the number, types, and order of its parameters. It allows the compiler to check for correct usage before the function is defined.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the auto storage classes in c++.
Is facebook written in c++?
What is the use of ::(scope resolution operator)?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
What methods can be overridden in java?
What is the difference between a declaration and a definition?
What is an incomplete type in c++?
Is there finally in c++?
Are strings immutable in c++?
What language does google use?
How do I make turbo c++ full screen?
What is public, protected, private in c++?