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 is wild pointer in c with example?
How are pointers declared in c?
How do you print an address?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is c basic?
What is putchar() function?
What is the use of getchar() function?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Why doesnt long int work?
write a program to copy the string using switch case?
Explain how can I read and write comma-delimited text?
Why c is called free form language?
What should malloc() do?
What is bss in c?
What are the differences between Structures and Arrays?