1.

What Is The Meaning Of Prototype Of A Function?

Answer»

Declaration of function is known as prototype of a function. Prototype SAYS the NAME, parameter list and return TYPE of a function but not the definition, this is same as declaring some VARIABLE but not defining it. For example,
int PRINTF(const char *, int/);

Declaration of function is known as prototype of a function. Prototype says the name, parameter list and return type of a function but not the definition, this is same as declaring some variable but not defining it. For example,
int printf(const char *, int/);



Discussion

No Comment Found