Easiest way I can think of (the first that came to mind) is to use the function "system"; You use it as follows:
system("C:\\MyProgram.exe");
(Note the two back slashes)
Basically, any string you pass to system it treats like you typed it into the command prompt. There are other ways to execute programs from within programs which are better (and more secure) but this probably requires the least code.