What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / karthikamburu
# is the main part of the 'c'program.it is used to define
the header file it means that it is used to declare that
header filesfor ex:"#include<stdio.h>".here it is used for
standarad for declaring printf and scanf()
functions.here "#" is the main part.
"#include<conio.h>"
it is used for clrscr() and getch()functions.here
also "#"is the main header file.actually it is preprocessor.
| Is This Answer Correct ? | 19 Yes | 11 No |
Post New Answer View All Answers
Do pointers need to be initialized?
What is static function in c?
Why is c still so popular?
Explain what are preprocessor directives?
What is a union?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain the difference between exit() and _exit() function?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Why can’t we compare structures?
Explain about the functions strcat() and strcmp()?
What is the use of ?: Operator?
Implement bit Array in C.
write a program to copy the string using switch case?
What is the benefit of using an enum rather than a #define constant?
Is c is a procedural language?