Tuesday, 1 March 2016
Header files contain definitions of functions and variables, which is imported or used into any C program by using the pre-processor #include statement. Header file have an extension ".h" which contains C function declaration and macro definition.
Each header file contains information (or declarations) for a particular group of functions. Like stdio.h header file contains declarations of standard input and output functions available in C which is used for get the input and print the output. Similarly, the header file math.h contains declarations of mathematical functions available in C
No. Name Description
1 stdio.h Input/Output Functions
2 conio.h console input/output
3 assert.h Diagnostics Functions
4 ctype.h Character Handling Functions
5 cocale.h Localization Functions
6 math.h Mathematics Functions
7 setjmp.h Nonlocal Jump Functions
8 signal.h Signal Handling Functions
9 stdarg.h Variable Argument List Functions
10 stdlib.h General Utility Functions
11 string.h String Functions
12 time.h Date and Time Functions
No. | Name | Description |
1 | stdio.h | Input/Output Functions |
2 | conio.h | console input/output |
3 | assert.h | Diagnostics Functions |
4 | ctype.h | Character Handling Functions |
5 | cocale.h | Localization Functions |
6 | math.h | Mathematics Functions |
7 | setjmp.h | Nonlocal Jump Functions |
8 | signal.h | Signal Handling Functions |
9 | stdarg.h | Variable Argument List Functions |
10 | stdlib.h | General Utility Functions |
11 | string.h | String Functions |
12 | time.h | Date and Time Functions |
Program of Falling Characters c example codes
ReplyDelete