what is the function of .h in #include<stdio.h> in c ?
Answer Posted / 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 |
Post New Answer View All Answers
Where static variables are stored in c?
Explain argument and its types.
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
How reliable are floating-point comparisons?
What is the use of a ‘ ’ character?
What is difference between array and structure in c?
please give me some tips for the placement in the TCS.
What are header files in c programming?
Explain pointers in c programming?
What is ambagious result in C? explain with an example.
hi, which software companys will take,if d candidate's % is jst 55%?
which is an algorithm for sorting in a growing Lexicographic order
Why do we need functions in c?
What is the significance of an algorithm to C programming?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none