[try Beta version]
Not logged in

 
how to create exe file?

Apr 13, 2013 at 1:59pm
How to create Exe file which run other exe files.e.g
there are exe two files
file1.exe
file2.exe
and make a programe in C++ to run these exe files.
how to do this?
Last edited on Apr 13, 2013 at 5:10pm
Apr 13, 2013 at 5:10pm
please help
Apr 18, 2013 at 12:52pm
Plz help
i'm combine to 2 exe file by c++ programming and make a single file.how in c/c++?
Apr 18, 2013 at 1:10pm
1
2
3
4
5
6
7
#include <cstdlib>

int main()
{
    std::system("file1.exe");
    std::system("file2.exe");
}
Topic archived. No new replies allowed.