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
write a programming in c to find the sum of all elements in an array through function.
What is exit() function?
How do I convert a string to all upper or lower case?
How are structure passing and returning implemented?
How to draw the flowchart for structure programs?
What is signed and unsigned?
What is c language & why it is used?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What are static variables in c?
Do string constants represent numerical values?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Are bit fields portable?
What are the types of functions in c?
What is #define size in c?
Explain how do you use a pointer to a function?