What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / sanjeev
The #include directive tells the preprocessor to treat the contents of a specified file as if those contents had appeared in the source program at the point where the directive appears.
About '#' and "include"
The '#' sign tells the preprocessor, which scans the code before sending it to the compiler, to do something.
"include" tells the preprocessor that the following file is to be included in the compiling process.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is string length in c?
What is function in c with example?
what is the basis for selection of arrays or pointers as data structure in a program
write a program to print largest number of each row of a 2D array
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Is a pointer a kind of array?
What does return 1 means in c?
Explain the binary height balanced tree?
What is infinite loop?
What does typeof return in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain how can I manipulate strings of multibyte characters?
Can a void pointer point to a function?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)