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 will be the output for the following main() { printf("hi" "hello"); }
Write a program to generate the Fibinocci Series
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is cohesion and coupling in c?
How are variables declared in c?
Where register variables are stored in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is c preprocessor mean?
i got 75% in all semester am i eligible for your company
What is the scope of static variable in c?
How reliable are floating-point comparisons?
What is volatile variable how do you declare it?
What is time null in c?
What is the use of linkage in c language?
What is a macro, and explain how do you use it?