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 programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What are the complete rules for header file searching?
What is the purpose of void in c?
What is the scope of static variable in c?
Why is c called c?
What are two dimensional arrays alternatively called as?
praagnovation
What is the difference between Printf(..) and sprint(...) ?
Why do some versions of toupper act strangely if given an upper-case letter?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Explain how can I right-justify a string?
How can I change their mode to binary?
Explain what is the benefit of using enum to declare a constant?
What is variable initialization and why is it important?