倒序输出文件中的文本(英文文本,Linux环境)
摘要:
/*倒序显示文本内容: linux环境*/ #include<stdio.h> #include<stdlib.h> #define SLEN 81 int main(void) { char *file = "hello.txt"; char ch; FILE *fp; long count, l 阅读全文
posted @ 2023-05-04 20:02 david_helloworld 阅读(42) 评论(0) 推荐(0)