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 an inline function?

2 Answers   TCS,


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1 Answers   College School Exams Tests,


could u able to tell about suresoft technical session

1 Answers  


What is the purpose of type declarations?

1 Answers  


Is main an identifier in c?

1 Answers  


Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

1 Answers  


why program counter is 16 bit?

3 Answers  


Differentiate between declaring a variable and defining a variable?

1 Answers  


Write a C program where input is: "My name is xyz". output is: "xyz is name My".

1 Answers   TCS,


Differentiate between full, complete & perfect binary trees.

1 Answers  


Define function pointers?

1 Answers  


Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors

3 Answers  


Categories