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
Explain how can I convert a string to a number?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What are the types of data structures in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
How many levels of pointers have?
How can I automatically locate a programs configuration files in the same directory as the executable?
How to define structures? ·
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Is it possible to initialize a variable at the time it was declared?
What math functions are available for integers? For floating point?
how to create duplicate link list using C???
#include
Explain how do you override a defined macro?
What does dm mean sexually?
What are header files in c programming?