我刚上手用TC
但是有问题难住了我
对于书本上的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;
}
----------------解决方案--------------------------------------------------------
heiheihei
----------------解决方案--------------------------------------------------------
213123313
----------------解决方案--------------------------------------------------------