int main(int argc, char* argv[])
{
std::cout << argc << std::endl;
}
The code above will print a number depending on the number of arguments added to it. However I am writing a game in c++/python and I need the program to accept a integer argument that will define the current level the player is on. May someone please show me how?