What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / raghuveer
The # is the Pre-Processor. Means it is a special kind of
program that executed before the actual compilation of the
program. When it executed it performs several tasks like
defining etc. On such operation is the include. The include
tell that the current program requires certain inclusion of
files. Like #include<stdio.h>. Here we are directing the
pre-processor to include the stdio.h header file.
| Is This Answer Correct ? | 17 Yes | 11 No |
Post New Answer View All Answers
what are enumerations in C
What the different types of arrays in c?
What are near, far and huge pointers?
Why do we need volatile in c?
Where are c variables stored in memory?
Is javascript based on c?
What is the return type of sizeof?
What is storage class?
Can a variable be both const and volatile?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What will be the outcome of the following conditional statement if the value of variable s is 10?
Is r written in c?
Which type of language is c?
What are the advantages of Macro over function?
Should a function contain a return statement if it does not return a value?