stdlib.h
即standard library标准库头文件。stdlib.h里面定义了五种类型、一些宏和通用工具函数。 类型例如size_t、wchar_t、div_t、ldiv_t和lldiv_t; 宏例如EXIT_FAILURE、EXIT_SUCCESS、RAND_MAX和MB_CUR_MAX等等; 常用的函数如malloc()、calloc()、realloc()、free()、system()、atoi()、atol()、rand()、srand()、exit()等等。
具体的内容你自己可以打开编译器的include目录里面的stdlib.h头文件看看。
stdio.h
就是指 “standard input & output"(标准输入输出)
int
getchar
()
//从标准输入设备读入一个字符
int
putchar
()
//向标准输出设备写出一个字符
int
scanf
(
char
*format[,argument…])
//从标准输入设备读入格式化后的数据
int
printf
(
char
*format[,argument…])
//向标准输出设备输出格式化字符串
char
gets
(
char
*string)
//从标准输入设备读入一个字符串
int
puts
(
char
*string)
//向标准输出设备输出一个字符串
int
sprintf
(
char
*string,
char
*format[,…])
//把格式化的数据写入某个字符串缓冲区
时间: 2024-10-15 23:54:10