Can we include one C program into another C program if yes how?
Answer Posted / cheers!
You can include a C file in an another file as depicted in the above example.
And you can also include an another process call ( which is basically a program) in a running program like..
int main()
{
main() // example 1
system("./RunMyProg"); // example 2
system("ls -l"); // example 3
}
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
What is a good way to implement complex numbers in c?
What is the meaning of ?
What are the advantages of the functions?
What is the difference between a free-standing and a hosted environment?
What is difference between structure and union?
What is 02d in c?
How many types of operator or there in c?
Explain what is page thrashing?
In a header file whether functions are declared or defined?
What is a #include preprocessor?
In which layer of the network datastructure format change is done
What is a static function in c?
What is c++ used for today?
Differentiate between null and void pointers.
Explain argument and its types.