遍历文本文件
/************************************************************************/ /* 日期:2017/12/28 /* 作者:Tinaluo /************************************************************************/ #include <stdio.h> int main() { FILE *fp=fopen("test.out","r"); char ch; while((ch = fgetc(fp)) != EOF) { putchar(ch); } return 0; }
参考帖子:http://www.cnblogs.com/dolphin0520/archive/2011/10/05/2199598.html