From 56f52e35363c77374ad7b583b90115a36a3ca575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=A4=A7=E4=BB=99?= <1900919313@qq.com> Date: Tue, 22 Oct 2024 01:01:35 +0000 Subject: [PATCH] =?UTF-8?q?2024=E5=B9=B410=E6=9C=8822=E6=97=A5=2009:01?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/notes/01_c-basic/07_xdx/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/01_c-basic/07_xdx/index.md b/docs/notes/01_c-basic/07_xdx/index.md index 8436eaf..0a99246 100644 --- a/docs/notes/01_c-basic/07_xdx/index.md +++ b/docs/notes/01_c-basic/07_xdx/index.md @@ -160,7 +160,7 @@ ### 1.3.4 缓冲区是如何提高 I/O 操作的频率? -* 对于 C 语言中的 `printf` 函数和 scanf 函数,其功能如下: +* 对于 C 语言中的 `printf` 函数和 `scanf` 函数,其功能如下: * `printf` 函数:将程序中的数据输出到外部设备(如:显示器)中。 * `scanf` 函数:从外部设备(如:键盘)中读取数据到程序中。 * 这些都是非常典型的 I/O 操作,并且 I/O 过程的效率也是很低的。除了硬件性能本身的差异外,I/O 操作的复杂性也是非常重要的因素,每次 I/O 操作都会带来一些固定的开销,如: