Can we include one C program into another C program if yes how?
Answer Posted / vinay kashyap
may be using the preprocessor directives.. like..
#include "prog1.c"
#include<stdio.h>
int main()
{
.
.
.
.
}
| Is This Answer Correct ? | 15 Yes | 7 No |
Post New Answer View All Answers
What is the equivalent code of the following statement in WHILE LOOP format?
#include
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
List the different types of c tokens?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
How pointer is different from array?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Differentiate between calloc and malloc.
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What do header files do?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Why shouldn’t I start variable names with underscores?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Is that possible to store 32768 in an int data type variable?
Subtract Two Number Without Using Subtraction Operator