I want to write a program that runs different programs depending on user input. How on earth do I do this?
Using C++ by the way...
I want to write a program that runs different programs depending on user input. How on earth do I do this?
Using C++ by the way...
I want to write a program that runs different programs depending on user input. How on earth do I do this?
Using C++ by the way...
The easiest way in windows is probably the system() function:
int system(const char *command);
The command string is the command to run, for example:
system("C:FooMyProgram.exe");