what is the function of .h in #include<stdio.h> in c ?
Answers were Sorted based on User's Feedback
Answer / mytri
.h is a header file which includes standard input and output
functions
| Is This Answer Correct ? | 112 Yes | 16 No |
Answer / dilip kumar
u know that every file is exist with extention name
so .h is a extention name of all header file.
| Is This Answer Correct ? | 50 Yes | 17 No |
Answer / meena
it is a header file.it stands for"standard input and
output"file.if you want to give any input to the computer
or if you want to recieve any output from the computer
(printf,scanf)this header file must be used.
| Is This Answer Correct ? | 35 Yes | 5 No |
Answer / vignesh1988i
this is called as a header file..... like .txt in
editors.... in this this header file dosent belong to the C
code..... the meaning of this is in this .h files all
functions will be writtern .............. eg. string
fun(),I/O fun(),getch(),clrscr(),math functions() ...... etc
... etc
| Is This Answer Correct ? | 25 Yes | 5 No |
Answer / amatullah
.h is the extention of the header file
h indicates that its a header file
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / bhawani shankar
accrding to my view simply we can say #include<stdio.h> is
a header file .this is include all standered input output of c
.h is used in this syntex is represents the link about the
header file (.h)
we also write syntex #include<stdio.h> is
#include"stdio.h" the .h shows that this is a header file..
| Is This Answer Correct ? | 10 Yes | 4 No |
Answer / moolshankar
.his the extencation of the header file .h indicvates
that its a header file
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / dekchand sharma
.h Means header file of input output in c.
#include<stdio.h>
it means standered input output header file.
| Is This Answer Correct ? | 13 Yes | 9 No |
Answer / victor chatterjee
.h is that extension in which the library files are being
saved. such as stdio.h, conio.h, iostream.h. it is the
header file which includes all the standard input output
functions.
| Is This Answer Correct ? | 4 Yes | 1 No |
What is use of pointer?
Explain is it better to bitshift a value than to multiply by 2?
Explain how do you print an address?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
In C language what is a 'dangling pointer'?
What are the 3 types of structures?
Why c is known as a mother language?
How do you search data in a data file using random access method?
How important is structure in life?
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
How can you check to see whether a symbol is defined?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item