#include <stdio.h>
#include <stdlib.h>
#define SIZE 50
#define FILENAME "E:\\1.txt" //---->內容: 12345
int main(void)
{
int ln;
FILE *fp;
char ar[SIZE];
ln = 0;
if( (fp = fopen(FILENAME, "r") ) == NULL)
{
printf("Can not open file: %s\n", FILENAME);
exit(1);
}
while( !feof(fp) )
{
fgets(ar, SIZE, fp);
// if( feof(fp) )
// { 這裡注釋掉就會把 12345 輸出2遍,
// break;
// }
printf("%s", ar);
}
fclose(fp);
return 0;
}
我還是不明白EOF是和feof是怎麼工作的,請教大家了。
只有當文件位置指針(fp->_ptr)到了文件末尾,然後再發生讀/寫操作時,標志位(fp->_flag)才會被置為含有_IOEOF。然後再調用feof(),才會得到文件結束的信息。
http://blog.csdn.net/bingqing07/article/details/5785080