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
Tell us two differences between new () and malloc ()?
How can I get the current date or time of day in a c program?
What are the three constants used in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What are local static variables?
What is a c token and types of c tokens?
How can I call fortran?
What is a wrapper function in c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
How is a pointer variable declared?
Why static variable is used in c?
Explain the array representation of a binary tree in C.
Explain high-order and low-order bytes.
Explain what is the advantage of a random access file?
What is the difference between printf and scanf )?