What is the meaning When we write "#include" what is # and
what does include does there???
Answers were Sorted based on User's Feedback
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 |
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 |
What is hash table in c?
What will happen when freeing memory twice
Why c is called a middle level language?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
will u please send me the placement papers to my mail???????????????????
What is void c?
What is structure in c language?
What is preprocessor with example?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Can we increase size of array in c?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
Give me the code of in-order recursive and non-recursive.