All c++ program execution starts from main function
Answers
Answered by
3
The function named main is a special function in all C++ programs; it is the function called when the program is run. The execution of all C++ programs begins with the main function, regardless of where the function is actually located within the code.
Similar questions