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
Is c language still used?
What are identifiers in c?
Why main is not a keyword in c?
What is the difference between exit() and _exit() function?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is memory leak in c?
What is the purpose of & in scanf?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Calculate 1*2*3*____*n using recursive function??
Write a Program to accept different goods with the number, price and date of purchase and display them
What is adt in c programming?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is data structure in c language?
What does the c in ctime mean?