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
How do you do dynamic memory allocation in C applications?
Is printf a keyword?
Explain what is the stack?
Which node is more powerful and can handle local information processing or graphics processing?
What is the auto keyword good for?
Tell us the use of fflush() function in c language?
Explain modulus operator. What are the restrictions of a modulus operator?
What are dangling pointers? How are dangling pointers different from memory leaks?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is static and auto variables in c?
What are preprocessor directives in c?
What is assert and when would I use it?
What is the difference between #include and #include 'file' ?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
What is the difference between the expression “++a” and “a++”?