Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

external exe

Status
Not open for further replies.

newapocalipsis

Programmer
Aug 10, 2001
48
MX
how do i execute a external dos .exe, from my program, because i tried with system() but it just doesn't works Golden Dragon Is Coming Soon...
 
examples of call to function system():

Code:
system("myprog.exe");
/* the program file can be issued without executable extension (*.exe). */
system("myprog");
/* forward-slash has to be expressed by escape sequence. */
system("c:\\folder\\myprog");
 
examples of call to function system():

Code:
system("myprog.exe");
/* the program file can be issued without executable extension (*.exe). */
system("myprog");
/* back-slash has to be expressed by escape sequence. */
system("c:\\folder\\myprog");
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top