摘要: 练习13-1 /* 打开与关闭文件 */ #include <stdio.h> int main(void) { char s[128]; FILE* fp; printf("请输入你要打开的文件"); scanf("%s", s); fp = fopen("*s", "r"); /* 打开文件 * 阅读全文
posted @ 2019-11-29 11:14 nightswatch-candle 阅读(999) 评论(0) 推荐(1)