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 is the function of multilevel pointer in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is f'n in math?
what is the role you expect in software industry?
Explain the concept and use of type void.
what are enumerations in C
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is volatile variable how do you declare it?
Why static is used in c?
Describe how arrays can be passed to a user defined function
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Are the expressions * ptr ++ and ++ * ptr same?
Disadvantages of C language.
What does stand for?