2 valid versions of main() exist in C++:
main()
C++
int main() // version 1 int main(int argc, char **argv) // version 2
B
It is not possible to overload main() in C++ because. the compiler shown the following error:
error C2731: 'main' : function cannot be overloaded