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
What are enums in c?
What is string concatenation in c?
What are the properties of union in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is function what are the types of function?
What does the file stdio.h contain?
What is realloc in c?
Can we change the value of constant variable in c?
What is the heap?
What are reserved words?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Explain the term printf() and scanf() used in c language?
What is the difference between array_name and &array_name?
What are static variables in c?