Beginner C++
Q5 / 100

What is the entry point of a C++ program?

Correct! Well done.

Incorrect.

The correct answer is D) main()

D

Correct Answer

main()

Explanation

Every C++ program starts execution from the main() function. It returns int (typically 0 on success).

Progress
5/100