What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / kamal
# is a symbol with the help of which the compiler will
first process the statement following # before compiling
the program. for example if we have something called
#define MAX 100 then the compiler will replace all MAX in
the program with 100 and then compile the program.
Likewise include following # will tell the compiler to
include the header file mentioned in the statement.
ex: #include<stdio.h>
I think all will be satisfied with my answer....!
| Is This Answer Correct ? | 20 Yes | 5 No |
Post New Answer View All Answers
State the difference between realloc and free.
Explain c preprocessor?
Why do some versions of toupper act strangely if given an upper-case letter?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
write a proram to reverse the string using switch case?
What is difference between union All statement and Union?
What is a program flowchart and explain how does it help in writing a program?
Is it fine to write void main () or main () in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Is it better to use malloc() or calloc()?
How can you tell whether a program was compiled using c versus c++?
What is structure in c explain with example?
Why do we use c for the speed of light?
Tell me what are bitwise shift operators?
What are the types of arrays in c?