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
Explain how are 16- and 32-bit numbers stored?
Can we change the value of static variable in c?
Can the size of an array be declared at runtime?
What is wild pointer in c?
can anyone please tell about the nested interrupts?
Why c is called a middle level language?
Hai what is the different types of versions and their differences
What is new line escape sequence?
What is getch c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Explain what is the difference between functions abs() and fabs()?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Explain function?
Can we assign string to char pointer?
how to create duplicate link list using C???