2015年05月18日 10:52:33
⁄ Linux 
⁄ 共 1829字
⁄ 被围观 3,156次
第一步:新建一个名为 myfile.in 的文件,并写入一些内容,尽量多点儿。
vi myfile.in
第二步:编写文件访问功能代码。
代码一:逐个字符的文件复制程序。
编写 copy_file.c 的文件,并实现读文件和写文件的操作,编译后执行。
Code ViewPrint
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
int main() {
char c;
int in, out;
...
Linux, 学习笔记, 文件读写阅读全文