What do you mean by funtion prototype?



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

Post New Answer

More C++ General Interview Questions

Explain the auto storage classes in c++.

1 Answers  


Is facebook written in c++?

1 Answers  


What is the use of ::(scope resolution operator)?

1 Answers  


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.

1 Answers  


What methods can be overridden in java?

1 Answers  


What is the difference between a declaration and a definition?

1 Answers  


What is an incomplete type in c++?

1 Answers  


Is there finally in c++?

1 Answers  


Are strings immutable in c++?

1 Answers  


What language does google use?

1 Answers  


How do I make turbo c++ full screen?

1 Answers  


What is public, protected, private in c++?

1 Answers  


Categories