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 / bhanudas

#include<stdio.h> mean standered input / output header
file.
This preprocessor directive tell the compiler I am
including my program in your header file.
It also called as preprocessor command or header file .

Is This Answer Correct ?    1 Yes 2 No

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

Answer / khaja

.h is an extension for i/o .

Is This Answer Correct ?    0 Yes 1 No

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

Answer / ishwarya

this header file include EOF function also

Is This Answer Correct ?    4 Yes 15 No

Post New Answer

More C Interview Questions

Program to simulate second clock

2 Answers  


What is data structure in c and its types?

0 Answers  


Write a program to check whether a number is prime or not using c?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }

2 Answers  


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

0 Answers  






Explain what is the benefit of using an enum rather than a #define constant?

0 Answers  


What is a macro?

0 Answers  


What do the functions atoi(), itoa() and gcvt() do?

0 Answers   Aspire, Infogain,


What Is The Difference Between Null And Void Pointer?

0 Answers   TCS,


What is a #include preprocessor?

0 Answers  


What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā€œ%d\nā€,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none

2 Answers  


write a c program to find largest of three numbers using simple if only for one time.

1 Answers  


Categories