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 make a call using system
system
system("./some_command")