In many C++ IDE\'s and compilers, when it generates the main function for you, it looks like this:
int main(int argc, char *argv[])
When I
The first parameter is the number of arguments provided and the second parameter is a list of strings representing those arguments.