I want my C++ program to execute another .exe, in Windows. How would I do this? I am using Visual C++ 2010.
Here is my code
#include \"stdafx.h\" #in
you can use the system function
system
int result = system("C:\\Program Files\\Program.exe");