cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
how to create exe file?
how to create exe file?
Apr 13, 2013 at 1:59pm UTC
Zu007
(40)
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 UTC
Apr 13, 2013 at 5:10pm UTC
Zu007
(40)
please help
Apr 18, 2013 at 12:52pm UTC
Zu007
(40)
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 UTC
Catfish3
(666)
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.