Can we include one C program into another C program if yes how?
Answer Posted / amegha
can include another file by using preprocessor directive.
#include<program1.c>
#include<stdio.h>
main()
{
-----
-----
}
Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What is the use of putchar function?
What is an lvalue in c?
What does %2f mean in c?
Write a program to print “hello world” without using semicolon?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
How can you find out how much memory is available?
What are the disadvantages of a shell structure?
Is register a keyword in c?
What is file in c preprocessor?
What extern c means?
Should I learn c before c++?
What is wrong with this program statement?
What is the use of getchar functions?
What is the difference between malloc calloc and realloc in c?
Explain argument and its types.