What is a function?
A function is a reusable sequence of statements designed to do a particular job.
What function is run first of all in a C++ program?
Main is the function which runs first in a C++ program.
What are return values?
They are specific values being returned from a function call.
Are nested functions allowed in C++?
No.