What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / prasanna
For example,# is probably known as the pre-processor,because
its called conditional platform code.And also its a header
part section.
The #include use in 2 ways.One is the #include<filename> and
second is the #include"filename".The First one,if the file
is not found there the compiler checks the source header
directory.If the file is not still found there,the
pre-processor checks the current directory....
#include"filename":
If the file is not found there the compiler
checks the compile include directory.If the file is still
not found there the pre-procesor checks the source header
directory.
Note:
The compiler first checks the compile include directory
for the specified file.
And also thanks for giving the chance for scribble here.
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
What does & mean in scanf?
program for reversing a selected line word by word when multiple lines are given without using strrev
What happens if header file is included twice?
Is c dynamically typed?
What does s c mean in text?
What is structure of c program?
string reverse using recursion
What is derived datatype in c?
What is the benefit of using const for declaring constants?
Are local variables initialized to zero by default in c?
Tell us something about keyword 'auto'.
Is there any data type in c with variable size?
Can you please explain the scope of static variables?
in iso what are the common technological language?
Explain what is the heap?