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 is a #include preprocessor?
What is the hardest programming language?
What is #include cctype?
How do you define CONSTANT in C?
What are global variables?
what is a constant pointer in C
Which of these functions is safer to use : fgets(), gets()? Why?
Write a program to use switch statement.
Is exit(status) truly equivalent to returning the same status from main?
What is the purpose of main( ) in c language?
Explain how do you declare an array that will hold more than 64kb of data?
Why void main is used in c?
How can you invoke another program from within a C program?
What is return in c programming?
Explain function?