1. What is a function?
A function is a reusable sequence of statements designed to do a particular job.
2. What function is run first of all in a C++ program?
int main()
3. What are return values?
The specific value returned from a function is called the return value .
4. Are nested functions allowed in C++?
Unlike some other programming languages, in C++, functions cannot be defined inside other functions.