Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what are the different types of headerfiles are there in C?

–1 vote
asked Dec 25, 2019 by parvesh (110 points)

3 Answers

0 votes
answered Dec 29, 2019 by anonymous
There are loads of header files available. Header files allow access to declarations and macro definitions.

time.h provides functions relating to time e.g. start a timer

System file headers (already available) are accessed by #include <name.h>

Can make your own header files and access by #include 'name.h'. Simply make a file with .h extension and have own functions etc inside and include it. Then in main script, call the function names, and it will go to relevant .h file
0 votes
answered Jan 17, 2020 by Warisha Laique (300 points)
#include<stdio.h>

#include<conio.h>

#include<string.h>

#include<math.h>

#include<stdlib.h>
0 votes
answered Jan 21, 2020 by noname00 (180 points)

Hello There!

C language contain many header files. Actually i don't know all of them . Here are some header files for C language. It may help you.

<assert.h>
<complex.h> 
<ctype.h>
<errno.h>
<fenv.h> 
<float.h>
<inttypes.h> 
<iso646.h> 
<limits.h>
<locale.h>
<math.h>
<setjmp.h>
<signal.h>
<stdalign.h> 
<stdarg.h>
<stdatomic.h> 
<stdbool.h> 
<stddef.h>
<stdint.h> 
<stdio.h>
<stdlib.h>

It may be helpful for you.
Regards!
HAPPY CODING..........

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...