Is main() overloaded in C++?

§3.6.1/2 (C++03) says

An implementation shall not predefine
the main function. This function shall
not be overloaded.
It shall have a
return type of type int, but otherwise
its type is implementation-defined.
All implementations shall allow both
of the following definitions of main:

   int main() { /* ... */ }
   int main(int argc, char* argv[]) { /* ... */ }

You can use either of them. Both are standard compliant.

Also, since char *argv[] is equivalent to char **argv, replacing char *argv[] with char **argv doesn’t make any difference.


But both the versions cannot co-exist at the same time ! (use case can be like: while running the binary from command prompt, if you pass no argument then 1st version should be called else the 2nd version).

No. Both versions cannot co-exist at the same time. One program can have exactly one main function. Which one, depends on your choice. If you want to process command-line argument, then you’ve to choose the second version, or else first version is enough. Also note that if you use second version, and don’t pass any command line argument, then there is no harm in it. It will not cause any error. You just have to interpret argc and argv accordingly, and based on their value, you’ve to write the logic and the flow of your program.

Leave a Comment