What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / a.ramachandiran b.sc cs
The symbol '#' is called preprocessor.
All the header files are stored in a folder namely INCLUDE.
When need to us use them we must mention as follows.
#include<headerfile_name.h>
| Is This Answer Correct ? | 27 Yes | 28 No |
Post New Answer View All Answers
When should the volatile modifier be used?
What is the difference between fread and fwrite function?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What does *p++ do? What does it point to?
Explain what is the difference between far and near ?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
how can I convert a string to a number?
How many types of operator or there in c?
What is #include stdio h?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What are the string functions? List some string functions available in c.
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
How is = symbol different from == symbol in c programming?
What are the benefits of organizational structure?
How is actual parameter different from the formal parameter?