How can I invoke another program from within a C program?
Answer Posted / srinivas
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./.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Explain what does it mean when a pointer is used in an if statement?
What does %c mean in c?
What is the difference between typedef struct and struct?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is a lvalue
What is an example of structure?
What are valid signatures for the Main function?
What are different types of variables in c?
What is the condition that is applied with ?: Operator?
Explain how can I make sure that my program is the only one accessing a file?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Does c have function or method?
What is a rvalue?
Not all reserved words are written in lowercase. TRUE or FALSE?