2020年2月9日
摘要: #include<stdio.h>int main(){ FILE *fp; if((fp=fopen("D:\\学生数据.txt","r"))==NULL){ printf("open error"); } char a[100]; fgets(a,100,fp); printf("%s",a); 阅读全文
posted @ 2020-02-09 23:25 walk_along_highway 阅读(574) 评论(0) 推荐(0)