Question:
How can I invoke another program from within a C program?
July 07, 2005 07:30:14
#1
Capreatki
Member Since: Visitor Total Comments: N/A
RE:
How can I invoke another program from within a C program?
Just use system() call like system(test.exe); the above statement when executed will executes test.exe and returns when test.exe finishes its executions./.