随笔分类 -  00-03、文件的操作

摘要:1、文件的打开 FILE *fopen( const char *filename, const char *mode ); filename:指向文件名字符串的常量指针,表明将要打开的文件 mode:文件打开模式,包括: r --为读取而打开,如果文件不存在或不能找到,函数调用失败; w --为写 阅读全文
posted @ 2017-05-30 20:51 Autumn_n 阅读(379) 评论(0) 推荐(0)

TOP