Can we include one C program into another C program if yes how?
Answer Posted / yogesh bansal
Not Sure..But If the below way is correct. then yes, we can
do that
#include <stdio.h>
int main()
{
printf("this is first program\n");
int main()
{
printf("this is second program\n");
return 0;
}
main();
return 0;
}
| Is This Answer Correct ? | 7 Yes | 28 No |
Post New Answer View All Answers
How #define works?
what are the 10 different models of writing an addition program in C language?
How do you print an address?
Which is better malloc or calloc?
What is the best organizational structure?
What is a union?
What is the default value of local and global variables in c?
Explain how can you tell whether two strings are the same?
Without Computer networks, Computers will be half the use. Comment.
What are the types of variables in c?
difference between object file and executable file
can we implement multi-threads in c.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is meant by preprocessor in c?
What is a lookup table in c?