# C 标准库 - <stdio.h>
## 简介
**stdio .h** 头文件定义了三个变量类型、一些宏和各种函数来执行输入和输出。
## 库变量
下面是头文件 stdio.h 中定义的变量类型:
| 变量 | 描述 |
| --- | --- |
| **size_t** | 这是无符号整数类型,它是 **sizeof** 关键字的结果。 |
| **FILE** | 这是一个适合存储文件流信息的对象类型。 |
| **fpos_t** | 这是一个适合存储文件中任何位置的对象类型。 |
## 库宏
下面是头文件 stdio.h 中定义的宏:
| 宏 | 描述 |
| --- | --- |
| **NULL** | 这个宏是一个空指针常量的值。 |
| **_IOFBF、_IOLBF** 和 **_IONBF** | 这些宏扩展了带有特定值的整型常量表达式,并适用于 **setvbuf** 函数的第三个参数。 |
| **BUFSIZ** | 这个宏是一个整数,该整数代表了 **setbuf** 函数使用的缓冲区大小。 |
| **EOFM** | 这个宏是一个表示已经到达文件结束的负整数。 |
| **FOPEN_MAX** | 这个宏是一个整数,该整数代表了系统可以同时打开的文件数量。 |
| **FILENAME_MAX** | 这个宏是一个整数,该整数代表了字符数组可以存储的文件名的最大长度。如果实现没有任何限制,则该值应为推荐的最大值。 |
| **L_tmpnam** | 这个宏是一个整数,该整数代表了字符数组可以存储的由 tmpnam 函数创建的临时文件名的最大长度。 |
| **SEEK_CUR、SEEK_END** 和 **SEEK_SET** | 这些宏是在These macros are used in the **fseek** 函数中使用,用于在一个文件中定位不同的位置。 |
| **TMP_MAX** | 这个宏是 tmpnam 函数可生成的独特文件名的最大数量。 |
| **stderr、stdin** 和 **stdout** | 这些宏是指向 FILE 类型的指针,分别对应于标准错误、标准输入和标准输出流。 |
## 库函数
下面是头文件 stdio.h 中定义的函数:
> 为了更好地理解函数,请按照下面的序列学习这些函数,因为第一个函数中创建的文件会在后续的函数中使用到。
| 函数 | 描述 |
| --- | --- |
| [int fclose(FILE \*stream)](c-function-fclose.html) | 关闭流 stream。刷新所有的缓冲区。 |
| [void clearerr(FILE \*stream)](c-function-clearerr.html) | 清除给定流 stream 的文件结束和错误标识符。 |
| [int feof(FILE \*stream)](c-function-feof.html) | 测试给定流 stream 的文件结束标识符。 |
| [int ferror(FILE \*stream)](c-function-ferror.html) | 测试给定流 stream 的错误标识符。 |
| [int fflush(FILE \*stream)](c-function-fflush.html) | 刷新流 stream 的输出缓冲区。 |
| [int fgetpos(FILE \*stream, fpos_t \*pos)](c-function-fgetpos.html) | 获取流 stream 的当前文件位置,并把它写入到 pos。 |
| [FILE \*fopen(const char \*filename, const char \*mode)](c-function-fopen.html) | 使用给定的模式 mode 打开 filename 所指向的文件。 |
| [size_t fread(void \*ptr, size_t size, size_t nmemb, FILE \*stream)](c-function-fread.html) | 从给定流 stream 读取数据到 ptr 所指向的数组中。 |
| [FILE \*freopen(const char \*filename, const char \*mode, FILE \*stream)](c-function-freopen.html) | 把一个新的文件名 filename 与给定的打开的流 stream 关联,同时关闭流中的旧文件。 |
| [int fseek(FILE \*stream, long int offset, int whence)](c-function-fseek.html) | 设置流 stream 的文件位置为给定的偏移 offset,参数 _offset_ 意味着从给定的 _whence_ 位置查找的字节数。 |
| [int fsetpos(FILE \*stream, const fpos_t \*pos)](c-function-fsetpos.html) | 设置给定流 stream 的文件位置为给定的位置。参数 _pos_ 是由函数 fgetpos 给定的位置。 |
| [long int ftell(FILE \*stream)](c-function-ftell.html) | 返回给定流 stream 的当前文件位置。 |
| [size_t fwrite(const void \*ptr, size_t size, size_t nmemb, FILE \*stream)](c-function-fwrite.html) | 把 ptr 所指向的数组中的数据写入到给定流 stream 中。 |
| [int remove(const char \*filename)](c-function-remove.html) | 删除给定的文件名 filename,以便它不再被访问。 |
| [int rename(const char \*old_filename, const char \*new_filename)](c-function-rename.html) | 把 old_filename 所指向的文件名改为 new_filename。 |
| [void rewind(FILE \*stream)](c-function-rewind.html) | 设置文件位置为给定流 stream 的文件的开头。 |
| [void setbuf(FILE \*stream, char \*buffer)](c-function-setbuf.html) | 定义流 stream 应如何缓冲。 |
| [int setvbuf(FILE \*stream, char \*buffer, int mode, size_t size)](c-function-setvbuf.html) | 另一个定义流 stream 应如何缓冲的函数。 |
| [FILE \*tmpfile(void)](c-function-tmpfile.html) | 以二进制更新模式(wb+)创建临时文件。 |
| [char \*tmpnam(char \*str)](c-function-tmpnam.html) | 生成并返回一个有效的临时文件名,该文件名之前是不存在的。 |
| [int fprintf(FILE \*stream, const char \*format, ...)](c-function-fprintf.html) | 发送格式化输出到流 stream 中。 |
| [int printf(const char \*format, ...)](c-function-printf.html) | 发送格式化输出到标准输出 stdout。 |
| [int sprintf(char \*str, const char \*format, ...)](c-function-sprintf.html) | 发送格式化输出到字符串。 |
| [int vfprintf(FILE \*stream, const char \*format, va_list arg)](c-function-vfprintf.html) | 使用参数列表发送格式化输出到流 stream 中。 |
| [int vprintf(const char \*format, va_list arg)](c-function-vprintf.html) | 使用参数列表发送格式化输出到标准输出 stdout。 |
| [int vsprintf(char \*str, const char \*format, va_list arg)](c-function-vsprintf.html) | 使用参数列表发送格式化输出到字符串。 |
| [int fscanf(FILE \*stream, const char \*format, ...)](c-function-fscanf.html) | 从流 stream 读取格式化输入。 |
| [int scanf(const char \*format, ...)](c-function-scanf.html) | 从标准输入 stdin 读取格式化输入。 |
| [int sscanf(const char \*str, const char \*format, ...)](c-function-sscanf.html) | 从字符串读取格式化输入。 |
| [int fgetc(FILE \*stream)](c-function-fgetc.html) | 从指定的流 stream 获取下一个字符(一个无符号字符),并把位置标识符往前移动。 |
| [char \*fgets(char \*str, int n, FILE \*stream)](c-function-fgets.html) | 从指定的流 stream 读取一行,并把它存储在 str 所指向的字符串内。当读取 \*\*(n-1)\*\* 个字符时,或者读取到换行符时,或者到达文件末尾时,它会停止,具体视情况而定。 |
| [int fputc(int char, FILE \*stream)](c-function-fputc.html) | 把参数 char 指定的字符(一个无符号字符)写入到指定的流 stream 中,并把位置标识符往前移动。 |
| [int fputs(const char \*str, FILE \*stream)](c-function-fputs.html) | 把字符串写入到指定的流 stream 中,但不包括空字符。 |
| [int getc(FILE \*stream)](c-function-getc.html) | 从指定的流 stream 获取下一个字符(一个无符号字符),并把位置标识符往前移动。 |
| [int getchar(void)](c-function-getchar.html) | 从标准输入 stdin 获取一个字符(一个无符号字符)。 |
| [char \*gets(char \*str)](c-function-gets.html) | 从标准输入 stdin 读取一行,并把它存储在 str 所指向的字符串中。当读取到换行符时,或者到达文件末尾时,它会停止,具体视情况而定。 |
| [int putc(int char, FILE \*stream)](c-function-putc.html) | 把参数 char 指定的字符(一个无符号字符)写入到指定的流 stream 中,并把位置标识符往前移动。 |
| [int putchar(int char)](c-function-putchar.html) | 把参数 char 指定的字符(一个无符号字符)写入到标准输出 stdout 中。 |
| [int puts(const char \*str)](c-function-puts.html) | 把一个字符串写入到标准输出 stdout,直到空字符,但不包括空字符。换行符会被追加到输出中。 |
| [int ungetc(int char, FILE \*stream)](c-function-ungetc.html) | 把字符 char(一个无符号字符)推入到指定的流 stream 中,以便它是下一个被读取到的字符。 |
| [void perror(const char \*str)](c-function-perror.html) | 把一个描述性错误消息输出到标准错误 stderr。首先输出字符串 str,后跟一个冒号,然后是一个空格。 |
- C语言教程
- C 简介
- C 环境设置
- C 程序结构
- C 基本语法
- C 数据类型
- C 变量
- C 常量
- C 存储类
- C 运算符
- C 判断
- C 循环
- C 函数
- C 作用域规则
- C 数组
- C 指针
- C 字符串
- C 结构体
- C 共用体
- C 位域
- C typedef
- C 输入 & 输出
- C 文件读写
- C 预处理器
- C 头文件
- C 强制类型转换
- C 错误处理
- C 递归
- C 可变参数
- C 内存管理
- C 命令行参数
- C语言参考
- C 标准库 - <assert.h>
- C 库宏 - assert()
- C 标准库 - <ctype.h>
- C 库函数 - isalnum()
- C 库函数 - isalpha()
- C 库函数 - iscntrl()
- C 库函数 - isdigit()
- C 库函数 - isgraph()
- C 库函数 - islower()
- C 库函数 - isprint()
- C 库函数 - ispunct()
- C 库函数 - isspace()
- C 库函数 - isupper()
- C 库函数 - isxdigit()
- C 标准库 - <errno.h>
- C 库宏 - errno
- C 库宏 - EDOM
- C 库宏 - ERANGE
- C 标准库 - <float.h>
- C 标准库 - <limits.h>
- C 标准库 - <locale.h>
- C 库函数 - setlocale()
- C 库函数 - localeconv()
- C 标准库 - <math.h>
- C 库函数 - acos()
- C 库函数 - asin()
- C 库函数 - atan()
- C 库函数 - atan2()
- C 库函数 - cos()
- C 库函数 - cosh()
- C 库函数 - sin()
- C 库函数 - sinh()
- C 库函数 - tanh()
- C 库函数 - exp()
- C 库函数 - frexp()
- C 库函数 - ldexp()
- C 库函数 - log()
- C 库函数 - log10()
- C 库函数 - modf()
- C 库函数 - pow()
- C 库函数 - sqrt()
- C 库函数 - ceil()
- C 库函数 - fabs()
- C 库函数 - floor()
- C 库函数 - fmod()
- C 标准库 - <setjmp.h>
- C 库宏 - setjmp()
- C 库函数 - longjmp()
- C 标准库 - <signal.h>
- C 库函数 - signal()
- C 库函数 - raise()
- C 标准库 - <stdarg.h>
- C 库宏 - va_start()
- C 库宏 - va_arg()
- C 库宏 - va_end()
- C 标准库 - <stddef.h>
- C 库宏 - NULL
- C 库宏 - offsetof()
- C 标准库 - <stdio.h>
- C 库函数 - fclose()
- C 库函数 - clearerr()
- C 库函数 - feof()
- C 库函数 - ferror()
- C 库函数 - fflush()
- C 库函数 - fgetpos()
- C 库函数 - fopen()
- C 库函数 - fread()
- C 库函数 - freopen()
- C 库函数 - fseek()
- C 库函数 - fsetpos()
- C 库函数 - ftell()
- C 库函数 - fwrite()
- C 库函数 - remove()
- C 库函数 - rename()
- C 库函数 - rewind()
- C 库函数 - setbuf()
- C 库函数 - tmpfile()
- C 库函数 - tmpnam()
- C 库函数 - fprintf()
- C 库函数 - printf()
- C 库函数 - sprintf()
- C 库函数 - vfprintf()
- C 库函数 - vprintf()
- C 库函数 - vsprintf()
- C 库函数 - fscanf()
- C 库函数 - scanf()
- C 库函数 - sscanf()
- C 库函数 - fgetc()
- C 库函数 - fgets()
- C 库函数 - fputc()
- C 库函数 - fputs()
- C 库函数 - getc()
- C 库函数 - getchar()
- C 库函数 - gets()
- C 库函数 - putc()
- C 库函数 - putchar()
- C 库函数 - puts()
- C 库函数 - ungetc()
- C 库函数 - perror()
- C 标准库 - <stdlib.h>
- C 库函数 - atof()
- C 库函数 - atoi()
- C 库函数 - atol()
- C 库函数 - strtod()
- C 库函数 - strtol()
- C 库函数 - strtoul()
- C 库函数 - calloc()
- C 库函数 - free()
- C 库函数 - malloc()
- C 库函数 - realloc()
- C 库函数 - abort()
- C 库函数 - atexit()
- C 库函数 - exit()
- C 库函数 - getenv()
- C 库函数 - system()
- C 库函数 - bsearch()
- C 库函数 - qsort()
- C 库函数 - abs()
- C 库函数 - div()
- C 库函数 - labs()
- C 库函数 - ldiv()
- C 库函数 - rand()
- C 库函数 - srand()
- C 库函数 - mblen()
- C 库函数 - mbstowcs()
- C 库函数 - mbtowc()
- C 库函数 - wcstombs()
- C 库函数 - wctomb()
- C 标准库 - <string.h>
- C 库函数 - memchr()
- C 库函数 - memcmp()
- C 库函数 - memcpy()
- C 库函数 - memmove()
- C 库函数 - memset()
- C 库函数 - strcat()
- C 库函数 - strncat()
- C 库函数 - strchr()
- C 库函数 - strcmp()
- C 库函数 - strncmp()
- C 库函数 - strcoll()
- C 库函数 - strcpy()
- C 库函数 - strncpy()
- C 库函数 - strcspn()
- C 库函数 - strerror()
- C 库函数 - strlen()
- C 库函数 - strpbrk()
- C 库函数 - strrchr()
- C 库函数 - strspn()
- C 库函数 - strstr()
- C 库函数 - strtok()
- C 库函数 - strxfrm()
- C 标准库 - <time.h>
- C 库函数 - asctime()
- C 库函数 - clock()
- C 库函数 - ctime()
- C 库函数 - difftime()
- C 库函数 - gmtime()
- C 库函数 - localtime()
- C 库函数 - mktime()
- C 库函数 - strftime()
- C 库函数 - time()
- 免责声明