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
Define and explain about ! Operator?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is conio h in c?
What is a MAC Address?
What are the data types present in c?
Is int a keyword in c?
What is memcpy() function?
Why we use break in c?
In which layer of the network datastructure format change is done
What is the code in while loop that returns the output of given code?
Why is structure important for a child?
Tell me can the size of an array be declared at runtime?
List out few of the applications that make use of Multilinked Structures?
What is clrscr in c?
Is calloc better than malloc?