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 are bit fields? What is the use of bit fields in a structure declaration?
What are valid operations on pointers?
what is use of malloc and calloc?
code for find determinent of amatrix
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is typedef struct in c?
What is a MAC Address?
What is c language and why we use it?
Explain can you assign a different address to an array tag?
What is the difference between malloc() and calloc()?
What tq means in chat?
How can a number be converted to a string?
Write a program that accept anumber in words
What is the size of a union variable?