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 zero based addressing.
Which header file is essential for using strcmp function?
Why structure is used in c?
What are the differences between Structures and Arrays?
Explain what are binary trees?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Why header file is used in c?
What are the types of c language?
What is bubble sort in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Difference between linking and loading?
What does c mean in standard form?
What is return type in c?
What the advantages of using Unions?
What is the basic structure of c?