what is the function of .h in #include<stdio.h> in c ?
Answer Posted / 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 |
Post New Answer View All Answers
What is difference between Structure and Unions?
Explain what are the __date__ and __time__ preprocessor commands?
What are integer variable, floating-point variable and character variable?
how to capitalise first letter of each word in a given string?
What is signed and unsigned?
What math functions are available for integers? For floating point?
Why clrscr is used after variable declaration?
Is array name a pointer?
What is a pointer on a pointer in c programming language?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Are pointers really faster than arrays?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What are dangling pointers? How are dangling pointers different from memory leaks?
How do shell structures work?
How main function is called in c?