How can I invoke another program from within a C program?
Answer Posted / phani kumar s
to access one C program in another C Program
there are two ways
1.making the file .exe and accessing and
2.include the file as the preprocess header
#include"File.h"
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Linked lists -- can you tell me how to check whether a linked list is circular?
How is actual parameter different from the formal parameter?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Explain 'bit masking'?
What are the types of c language?
What are the advantages and disadvantages of a heap?
What is a scope resolution operator in c?
What is the g value paradox?
How can I access an I o board directly?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is static volatile in c?
What is a floating point in c?
What is string in c language?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above