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
What are keywords c?
Write a program to print all permutations of a given string.
What is malloc calloc and realloc in c?
How many levels deep can include files be nested?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Can include files be nested?
What is function prototype in c language?
What is pointers in c?
What are the properties of union in c?
Explain how do you list files in a directory?
What is gets() function?
What does c mean?
in linking some of os executables are linking name some of them
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is ambagious result in C? explain with an example.