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
How can I manipulate individual bits?
What is string function c?
What is array of pointers to string?
What is a string?
In C language, a variable name cannot contain?
Is swift based on c?
What is the default value of local and global variables in c?
What do you understand by normalization of pointers?
What are dangling pointers in c?
What is the ANSI C Standard?
What is keyword in c?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What is the use of void pointer and null pointer in c language?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Does c have enums?