Multiple choice

The unique function in C++ program by where all C++ programs start their execution, is

  1. Start ( )

  2. Begin( )

  3. Main ( )

  4. Output( )

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

main() is the designated entry point where C++ program execution begins. When you run a C++ program, the operating system calls the main() function first. Options like Start(), Begin(), or Output() are not standard entry points in C++. The exact signature is typically int main() for standards-compliant code.