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
Where register variables are stored in c?
What does stand for?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
How many main () function we can have in a project?
What are header files in c?
Explain what is meant by 'bit masking'?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What does p mean in physics?
What is structure in c explain with example?
can anyone please tell about the nested interrupts?
Why structure is used in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Explain how can I pad a string to a known length?