c standard library 具体有哪些
时间: 2023-09-15 12:22:37 浏览: 217
The Standard C Library
C标准库定义了一套C语言的基本函数,包括以下头文件和库:
1. stdio.h:输入输出库,包括printf、scanf、fopen、fclose等函数。
2. stdlib.h:通用工具函数库,包括malloc、free、exit、system等函数。
3. string.h:字符串处理库,包括strcpy、strcat、strlen、memcmp等函数。
4. math.h:数学库,包括sqrt、sin、cos、log等函数。
5. time.h:时间日期库,包括time、difftime、strftime等函数。
6. ctype.h:字符处理库,包括isalnum、isalpha、isdigit、islower等函数。
7. stdbool.h:布尔类型库,包括bool、true、false等类型和宏定义。
8. stddef.h:标准定义库,包括size_t、ptrdiff_t、NULL等类型和宏定义。
9. stdarg.h:可变参数库,包括va_list、va_start、va_arg等宏定义。
10. errno.h:错误码库,包括errno、perror等变量和函数。
11. assert.h:断言库,包括assert宏定义。
除此之外,还有一些辅助库,如ctype、limits、float、stdbool等。
阅读全文