在线文档
标准输入输出 stdio
输入内容到标准输出
接收用户输入
读取文件
写入文件
删除文件
重命名/移动文件
字符串 string
- atoi/atof/atol
- strtol/strtoul/strtof
- strcpy/strcat/strcmp/strchr/strspn/strpbrk/strstr/
时间/日期 time
- time
- strftime
- gmtime
数学 math
- abs/fabs
- ceil/floor/pow/round/rint
工具函数 stdlib
错误处理 assert
c
#include <assert.h>
int main() {
int a = 10;
int b = 20;
assert(a == b); // 断言, 可用于单元测试
// Assertion failed: (a == b), function main, file main.c,
}