feof[feof]

feof[feof]
更多義項 ▼ 收起列表 ▲

feof,函式功能是檢測流上的檔案結束符。

解釋

函式名: feof
功能: 檢測流上的檔案結束符
用法: int feof(FILE *stream);

程式例

#include <stdio.h>
int main(void)
{
FILE *stream;
/* open a file for reading */
stream = fopen("DUMMY.FIL", "r");
/* read a character from the file */
fgetc(stream);
/* check for EOF */
if (feof(stream))
printf("We have reached end-of-file\n");
/* close the file */
fclose(stream);
return 0;
}

相關詞條

相關搜尋

熱門詞條

聯絡我們