Can we include one C program into another C program if yes how?
Answer Posted / vinay kashyap
may be using the preprocessor directives.. like..
#include "prog1.c"
#include<stdio.h>
int main()
{
.
.
.
.
}
| Is This Answer Correct ? | 15 Yes | 7 No |
Post New Answer View All Answers
Explain what is the purpose of "extern" keyword in a function declaration?
What do you mean by scope of a variable in c?
Can stdout be forced to print somewhere other than the screen?
What is #include stdio h and #include conio h?
What is the difference between printf and scanf )?
Explain a file operation in C with an example.
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is union and structure?
what is stack , heap ,code segment,and data segment
Why is c called "mother" language?
How do you determine whether to use a stream function or a low-level function?
What is static and volatile in c?
What are the types of data types and explain?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is the easiest sorting method to use?