Why calling main() is not allowed in C++

In addition to the other answers: The c++ spec guarantees that all static initialization has happened before main is called.

If code could call main then some static scoped object could call main, in which case a fundamental guarantee is violated.

The spec can’t say “static scoped objects should not call main()” because many objects are not written specifically to be instantiated at static scope always. It also can’t say that constructors should not call main() – because its very difficult to audit and prove that a constructor isn’t calling a method, calling a method, that might sometimes, call main().

Leave a Comment