What is the meaning When we write "#include" what is # and
what does include does there???

Answers were Sorted based on User's Feedback



What is the meaning When we write "#include" what is # and what does include does there??..

Answer / 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

What is the meaning When we write "#include" what is # and what does include does there??..

Answer / sakthivel.m

Header file used for to accepped the total programs and
steps in c language.

#include<stdio.h>

#--> preprocessor (define a programing checking concept)

include--> it interface both the header file and preprocessor

< >--> Expretion of header file area

" "--> charater type using a section of header file.

stdio.h--> standard input output.header (header file name)

Is This Answer Correct ?    5 Yes 8 No

Post New Answer

More C Interview Questions

What is Heap?

3 Answers  


What is an lvalue in c?

0 Answers  


what is the difference between declaration and definition of a variable or function ?

3 Answers  


Where is c used?

0 Answers  


What is strcpy() function?

0 Answers  






#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }

3 Answers   VB,


When is a “switch” statement preferable over an “if” statement?

0 Answers  


What is typedef struct in c?

0 Answers  


progrem to generate the following series 1 12 123 1234 12345

6 Answers   HCL, Wipro,


How do you determine a file’s attributes?

0 Answers  


dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?

4 Answers  


What are the basic data types associated with c?

0 Answers  


Categories