What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / ashu singh
# is a pre-processor and "include" is a pre-processor directive."include" tells to compiler to carry the header file's functions in your memory...whenever i call the function linker and loader do there work...and "#" pre process the header files before compilation.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are the basic data types associated with c?
How can you be sure that a program follows the ANSI C standard?
How can I copy just a portion of a string?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
How do we open a binary file in Read/Write mode in C?
What is a good data structure to use for storing lines of text?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Can a pointer be volatile in c?
What is the use of header files?
What is the role of this pointer?
How can I discover how many arguments a function was actually called with?
Explain what is the stack?
What is meant by operator precedence?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays