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 do you define CONSTANT in C?
What is data types?
Explain bitwise shift operators?
What is a function simple definition?
Explain how do you use a pointer to a function?
Can you please explain the difference between exit() and _exit() function?
What is the difference between NULL and NUL?
What is wrong with this statement? Myname = 'robin';
What does the c in ctime mean?
What is static and auto variables in c?
how we can make 3d venturing graphics on outer interface
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is identifiers in c with examples?
What is the difference between new and malloc functions?
Can a variable be both const and volatile?