What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / prof.gagandeep jagdev
# refers to pre-processor directives. Pre-processor word
means that the header file following #include is already
processed and their is no chance of it containing any
errors or flaws. User can directly include the header file
in his/her program.
| Is This Answer Correct ? | 160 Yes | 26 No |
Post New Answer View All Answers
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is queue in c?
Can we add pointers together?
What are qualifiers and modifiers c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Explain the difference between ++u and u++?
When is a void pointer used?
What's a good way to check for "close enough" floating-point equality?
What is the purpose of main() function?
What are the properties of union in c?
What is echo in c programming?
What are 3 types of structures?
Why do we need arrays in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the deal on sprintf_s return value?