02 2019 档案

摘要:#include<stdio.h>#include<windows.h>#include<string.h>int main(void){ char name[32]; char password[32]; FILE*data; char name_tmp[32]; char password_tm 阅读全文
posted @ 2019-02-21 22:32 指遥 阅读(296) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h>#include<windows.h>int main(void){ FILE*data; data=fopen("C:\\teacher.txt","a");//"a"尾部追加一个“写”的功能 if(!data){ //!data等效于 data == NULL 阅读全文
posted @ 2019-02-19 22:08 指遥 阅读(284) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h>#include <windows.h>int main(void){ FILE *a; a=fopen("C:\\student.txt","r"); if(!a){ printf("文件错误!"); }else{ printf("文件打开成功!\n"); sy 阅读全文
posted @ 2019-02-13 15:09 指遥 阅读(154) 评论(0) 推荐(0) 编辑