C standard library
Standard library of C is stored in the form of 29 header
files as of 2014.
- <stdio.h>
- <stdlib.h>
- <assert.h>
- <ctype.h>
- <errno.h>
- <float.h>
- <limits.h>
- <locale.h>
- <math.h>
- <setjmp.h>
- <signal.h>
- <stdarg.h>
- <stddef.h>
- <string.h>
- <threads.h>
- <time.h>
- <iso646.h>
- <wchar.h>
- <wctype.h>
C99 standard added below 6 header files.
- <complex.h>
- <fenv.h>
- <inttypes.h>
- <stdbool.h>
- <stdint.h>
- <tgmath.h>
C11
standard added below 5 header files.
- <stdalign.h>
- <stdatomic.h>
- <stdnoreturn.h>
- <threads.h>
- <uchar.h>
All header files mentioned above are built-in header files.
But we can generate user defined header files as well in C. Please note that
each header file contains declarations for important functions.
For example :-
<string.h> contains declarations for many string
related functions like strlen, strcat, strcpy etc.
No comments:
Post a Comment
Leave your valuable feedback. Your thoughts do matter to us.