查找树,俄罗斯方块,系统编程开始

This commit is contained in:
lzy
2024-04-25 21:56:26 +08:00
parent 71fdab3f9f
commit eba0cbb4c4
8 changed files with 305 additions and 2 deletions

View File

@@ -0,0 +1,36 @@
# I/O操作
输入输出是一切实现的基础。
标准IO`stdio`
系统调用IO文件IO`sysio`
优先使用标准IO兼容性更好还有合并系统调用的优势。
```c
/* stdio */
/* FILE类型贯穿始终 */
FILE *fopen(const c);
fclose();
fgetc();
fputc();
fgets();
fputs();
fread();
fwrite();
printf();
scanf();
fseek();
ftell();
rewind();
fflush();
```