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
Explain what are the different data types in c?
What is the difference between #include
How can I find out how much free space is available on disk?
What is a static variable in c?
What is the difference between near, far and huge pointers?
What is function prototype in c language?
What is the use of a semicolon (;) at the end of every program statement?
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 the types of bitwise operator?
What is the difference between null pointer and wild pointer?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is extern c used for?
Can a pointer point to null?
The statement, int(*x[]) () what does in indicate?
Why void is used in c?