+ 5
Valid signatures for the main function in C++ depend on the version and compiler that is being used.
int main();
and
int main(int argc, char* argv[]); or int main(int argc, char** argv);
Are typically the signatures that are used in the C++ standard.