Google News
logo
CPP - Quiz(MCQ)
From which function the execution of a C++ program starts?
A)
start() function
B)
end() function
C)
new() function
D)
main() function

Correct Answer :   main() function


Explanation : The execution of a C++ program starts from the main() function.

Advertisement