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
#include
How can I generate floating-point random numbers?
Explain About fork()?
What are the types of i/o functions?
Can you return null in c?
What are global variables?
shorting algorithmS
What is array in C
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Write a program of advanced Fibonacci series.
What does main () mean in c?
What are the difference between a free-standing and a hosted environment?
How can you tell whether a program was compiled using c versus c++?
Why is a semicolon (;) put at the end of every program statement?
How can you determine the size of an allocated portion of memory?