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
Can you mix old-style and new-style function syntax?
Can you please compare array with pointer?
Are enumerations really portable?
Why c is called a middle level language?
Explain two-dimensional array.
Differentiate call by value and call by reference?
Explain enumerated types in c language?
What is meant by high-order and low-order bytes?
Under what circumstances does a name clash occur?
What is array in c with example?
What are the different types of errors?
What is unary operator?
In C programming, what command or code can be used to determine if a number of odd or even?
while initialization of array why we use a[][2] why not a[2][]...?
Explain what is the heap?