Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation

10 Answers   IBM,


How do you list a file’s date and time?

0 Answers  


Explain function?

0 Answers  


Write a program to print “hello world” without using semicolon?

0 Answers  


write a function to find whether a string is palindrome or not and how many palindrome this string contain?

2 Answers   Aptech,


How can you read a directory in a C program?

0 Answers  


How can we see the Expanded source code and compiled code for our source program in C?

1 Answers  


what do structure language means?

3 Answers   Microsoft,


count the numbers between 100 and 300, that star with 2 and ends with 2

5 Answers   Mind Tree,


How arrays can be passed to a user defined function

0 Answers  


9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?

4 Answers   L&T,


int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


Categories