What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / raghuveer
The # is the Pre-Processor. Means it is a special kind of
program that executed before the actual compilation of the
program. When it executed it performs several tasks like
defining etc. On such operation is the include. The include
tell that the current program requires certain inclusion of
files. Like #include<stdio.h>. Here we are directing the
pre-processor to include the stdio.h header file.
| Is This Answer Correct ? | 17 Yes | 11 No |
Post New Answer View All Answers
Are local variables initialized to zero by default in c?
Can you define which header file to include at compile time?
How can you pass an array to a function by value?
What is a c token and types of c tokens?
How reliable are floating-point comparisons?
can anyone suggest some site name..where i can get some good data structure puzzles???
What is a shell structure examples?
What are structural members?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is difference between function overloading and operator overloading?
What are pointers? Why are they used?
What are unions in c?
Why n++ execute faster than n+1 ?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Is void a keyword in c?