Hi all,
How to run one c++ .exe file from another c++ application...
I used following code...but not working..
How to run one c++ .exe file from another c++ application...
I used following code...but not working..
Code:
#include<iostream.h> #include<stdlib.h> int main() { system("C:\Rupali1\c++ examples\listConcat\Debug\listConcat.exe"); //system("explorer.exe"); return i; }
Comment