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 what is an endless loop?
What are the 5 organizational structures?
What is clrscr in c?
Did c have any year 2000 problems?
What is s in c?
praagnovation
When should we use pointers in a c program?
What is the explanation for cyclic nature of data types in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is formal argument?
What are the 5 types of inheritance in c ++?
Write a program to print numbers from 1 to 100 without using loop in c?
What is clrscr ()?
Explain can static variables be declared in a header file?
Explain enumerated types.