what is the function of .h in #include<stdio.h> in c ?

Answers were Sorted based on User's Feedback



what is the function of .h in #include<stdio.h> in c ?..

Answer / sr amit tyagi

.h extension shows the type of file is header file. In turbo
c there are two file that are use for predefine function.as
header file which contains definition and explanations of
all function and constants and the extension of these file
is ".h".where the functions are kept in the library file
which have extension ".LIB".example
stdio.h
or
stdio.LIB

Is This Answer Correct ?    1 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / farhan ejaz

#includestdio.h is a function which control the input and
output function likeb printf and scanf

Is This Answer Correct ?    1 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / digambar

.h specifies that stdio is a header file means, it is a extension of a header file not compulsory to write .h but as a tradition we are using .h as a extension of header file

Is This Answer Correct ?    1 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / shaix

As i know , em not that much xperiancd ......
buh available to ans the question as i know
<stdio.h>
which stand for <standard input output . Header File>
so .h is a header file which includes standard input and output functions ..

Is This Answer Correct ?    1 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / shashiprabha singh

.h is used for header files and stdio.h is "standard input
output header files" which hold all realtives i/p files. In
these files varias types of function r included like scanf,
printf etc.

Is This Answer Correct ?    0 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / rajan

# 8

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 ?    0 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / chhavram singh

.h is a extension of #include<stdio.h> because it have all
working or definition of its header file without .h we can
not connect system libraries.

Is This Answer Correct ?    0 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / ashu

it stnds for standard input output header file. it is a
processor directive in c . it include all input output
function in c . wth the help of header file vwe know which
function where use in program
------ - in my view ------------

Is This Answer Correct ?    0 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / nitesh vashist

.h is only giving indication that it is a header file.
only two types of files in c .c and .h.
if we copy stdio.h file as stdio then it will work we can
use stdio file instead of stdio.h. it will work definitely...

Is This Answer Correct ?    0 Yes 0 No

what is the function of .h in #include<stdio.h> in c ?..

Answer / george mwenyeheri

stdio... stands for Standard Input Output library.. and the
".h" is the header file extension.. as in when u save a text
file the extension you give is .txt.. similarly we give .h
extension to the header file named stdio.. hope u are
comfortable with <stdio.h> .

Now lets concentrate on #include.. # is the pre processor
directive.. this is just to direct the pre processor to
'include' all the files contained in the <stdio.h> file

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Explain how can I prevent another program from modifying part of a file that I am modifying?

0 Answers  


What are the header files used in c language?

0 Answers  


Can a file other than a .h file be included with #include?

0 Answers   Aspire, Infogain,


How is = symbol different from == symbol in c programming?

0 Answers  


if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.

18 Answers   Parexel, Ram Infotech, Zycus Infotech,


Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));

6 Answers   TCS,


int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?

6 Answers   Verifone,


How to calculate Total working time using Login and logout?

2 Answers   CTS, Cygnus, Infosys, Signal Networks, TCS, Wipro,


What is a stream water?

0 Answers  


WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?

28 Answers   3D PLM, Code Studio, Deltech, IBM,


What are type modifiers in c?

0 Answers  


how to print this sereis 2 4 3 6 5..........?

3 Answers  


Categories