Chinaunix首页 | 论坛 | 博客
  • 博客访问: 9953
  • 博文数量: 6
  • 博客积分: 106
  • 博客等级: 民兵
  • 技术积分: 65
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-09 23:21
文章分类

全部博文(6)

文章存档

2012年(6)

我的朋友

分类: C/C++

2012-03-22 23:22:04

函数名: feof
功  能: 检测流上的文件结束符
用  法: int feof(FILE *stream);
程序例:

#include

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;
}

阅读(413) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~