当前位置: 代码迷 >> C语言 >> 菜鸟求助关于EOF
  详细解决方案

菜鸟求助关于EOF

热度:306   发布时间:2006-08-03 16:39:10.0
菜鸟求助关于EOF
我是个刚学C的菜鸟,希望大家能帮帮我
我刚上手用TC
但是有问题难住了我
对于书本上的EOF这个文件结束符号
我怎么在键盘中实现呢,按什么键啊。
搜索更多相关的解决方案: EOF  键盘  书本  

----------------解决方案--------------------------------------------------------

你不是已经实现了马, 就是你输入的这个东西啊


----------------解决方案--------------------------------------------------------
ctrl+z in windows
----------------解决方案--------------------------------------------------------

斑竹说的对`````不过还来句英文,哈哈
二楼的不要忽悠小女生哦``````


----------------解决方案--------------------------------------------------------
EOF一般用在文件输入控制上吧。
----------------解决方案--------------------------------------------------------

你自己看看哈,这是我找的资料
函数名: eof
功 能: 检测文件结束
用 法: int eof(int *handle);
程序例:

#include <sys\stat.h>
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <io.h>

int main(void)
{
int handle;
char msg[] = "This is a test";
char ch;

/* create a file */
handle = open("DUMMY.FIL",
O_CREAT | O_RDWR,
S_IREAD | S_IWRITE);

/* write some data to the file */
write(handle, msg, strlen(msg));

/* seek to the beginning of the file */
lseek(handle, 0L, SEEK_SET);

/*
reads chars from the file until hit EOF
*/
do
{
read(handle, &ch, 1);
printf("%c", ch);
} while (!eof(handle));

close(handle);
return 0;
}


----------------解决方案--------------------------------------------------------
[原创]heihei

heiheihei


----------------解决方案--------------------------------------------------------
213123313
----------------解决方案--------------------------------------------------------
  相关解决方案