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
Write a program to show the change in position of a cursor using c
Tell us bitwise shift operators?
Why is c known as a mother language?
what is stack , heap ,code segment,and data segment
How can I find out if there are characters available for reading?
Does c have enums?
What are the keywords in c?
How can you check to see whether a symbol is defined?
Explain what are preprocessor directives?
What is the size of structure pointer in c?
Compare and contrast compilers from interpreters.
What are the features of c languages?
How can you draw circles in C?
What is the newline escape sequence?
What is the purpose of main( ) in c language?