GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  OOPS

 Print  |  
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./.
     

 

Back To Question