Q:
What is function prototype in C++?
Answer
A function prototype is a declaration of a function that omits the function body. It specifies the function’s name, argument types and return type.
E.g. int add(int,int)
View answer
Workspace
Report Error
Discuss