摘要: 1 #pragma warning(disable:4996) 2 #include<stdio.h> 3 #include<string.h> 4 #include<stdlib.h> 5 int main() { 6 7 FILE*p = fopen("Text.txt", "r+"); 8 i 阅读全文
posted @ 2020-03-30 19:00 七月的四字 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1.fopen打开文件: FILE* fopen(const char*fileName,const char*_tMode) fopen("test.txt","r+"); _tMode取值: r ,w,a r+,w+,a+ rb,wb,ab rb+,wb+,ab+ 1 FILE*input=fo 阅读全文
posted @ 2020-03-30 18:57 七月的四字 阅读(110) 评论(0) 推荐(0) 编辑