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
How is null defined in c?
why programs in c are running with out #include
Do you have any idea about the use of "auto" keyword?
What are variables and it what way is it different from constants?
How does selection sort work in c?
Is c still relevant?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What is a pragma?
Define circular linked list.
What is operator precedence?
Process by which one bit pattern in to another by bit wise operation is?
In which header file is the null macro defined?
What is a keyword?
What is meant by keywords in c?
When should the const modifier be used?