A C++ program always begins its execution by
Answers
Answered by
2
Answer:
main function
Explanation:
The main function is the point where all C++ programs begin their execution. It is independent of whether it is at the beginning, at the end or in the middle of the code - its content is always the first to be executed when a program starts.
Answered by
0
Answer:
Calling Main
Explanation:
Remember that no matter the order in which they are defined, a C++ program always starts by calling main. In fact, mains the only function called automatically, and the code in any other function is only executed if its function is called from main(directly or indirectly).
Similar questions