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
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
difference between native and cross compilers
How can you read a directory in a C program?
How do I create a directory? How do I remove a directory (and its contents)?
What are operators in c?
Is c procedural or object oriented?
What is static volatile in c?
What is the explanation for modular programming?
What are examples of structures?
What is the difference between strcpy() and memcpy() function in c programming?
How can I avoid the abort, retry, fail messages?
What is the difference between #include
Can I initialize unions?
Differentiate fundamental data types and derived data types in C.
What is keyword with example?