how to create exe file?

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
please help
Plz help
i'm combine to 2 exe file by c++ programming and make a single file.how in c/c++?
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.