Possible Duplicate:
does c++ standard prohibit the void main() prototype?
Why is C++ not letting me do void main()? It’s not much of a problem, but I’m still curious.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Because return type of
main()(as mandated by the Standard) must beintC++03 [
Section 3.6.1Main function]