What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / jitesh singh
The pre-processor is the part of the compiler which actually gets your program from the file.
This is a pre-processor directive. It is not part of our program, it is an instruction to the compiler to make it do something. It tells the C compiler to include the contents of a file, in this case the system file stdio.h. The compiler knows it is a system file, and therefore must be looked for in a special place, by the fact that the name is enclosed in <> characters.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are disadvantages of C language.
What do you understand by friend-functions? How are they used?
I need testPalindrome and removeSpace
#include
Tell me the use of bit field in c language?
What is spark map function?
write a program to generate address labels using structures?
Explain the advantages of using macro in c language?
Why are all header files not declared in every c program?
Explain logical errors? Compare with syntax errors.
How can you convert integers to binary or hexadecimal?
How macro execution is faster than function ?
Why & is used in c?
Explain can static variables be declared in a header file?
Which driver is a pure java driver
How can I invoke another program or command and trap its output?