InterviewSolution
Saved Bookmarks
| 1. |
What is a function prototype? Give an example. |
|
Answer» The declaration of a function before it is used or called is known as function prototype. Eg: int demo (int, int, int); |
|