What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / a.ramachandiran b.sc cs
The symbol '#' is called preprocessor.
All the header files are stored in a folder namely INCLUDE.
When need to us use them we must mention as follows.
#include<headerfile_name.h>
| Is This Answer Correct ? | 27 Yes | 28 No |
Post New Answer View All Answers
What are logical errors and how does it differ from syntax errors?
What does nil mean in c?
Explain what is a program flowchart and explain how does it help in writing a program?
How can I read/write structures from/to data files?
Write a program to check whether a number is prime or not using c?
Is exit(status) truly equivalent to returning the same status from main?
What are multidimensional arrays?
What’s the special use of UNIONS?
What are the advantages of using new operator as compared to the function malloc ()?
What is a node in c?
Explain about the constants which help in debugging?
How does struct work in c?
What is scope of variable in c?
What is data structure in c and its types?
What are identifiers c?