What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / sanjeev
The #include directive tells the preprocessor to treat the contents of a specified file as if those contents had appeared in the source program at the point where the directive appears.
About '#' and "include"
The '#' sign tells the preprocessor, which scans the code before sending it to the compiler, to do something.
"include" tells the preprocessor that the following file is to be included in the compiling process.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is pointer and structure in c?
What is this pointer in c plus plus?
What does void main () mean?
Explain what is wrong in this statement?
Can a pointer be volatile in c?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
How do we open a binary file in Read/Write mode in C?
What tq means in chat?
What are unions in c?
Do pointers store the address of value or the actual value of a variable?
What is an expression?
Is it possible to have a function as a parameter in another function?
What is function what are the types of function?
Write a program to print ASCII code for a given digit.
What is the purpose of the statement: strcat (S2, S1)?