为什么我VS 2015 scanf 函数 不返还EOF?
代码如下#include<stdio.h>
int main(void)
{
int n;
if (scanf("%d", &n) != EOF)
{
printf("1232");
}
return 0;
}
我按 CTRL+Z 并不会退出循环,要连续分三行输入CTRL+Z才会退出,这是为什么
#include <stdio.h> /* count characters in input; 1st version */ main() { long nc; nc = 0; while (getchar() != EOF) ++nc; printf("%ld\n", nc); }
[此贴子已经被作者于2016-2-28 12:07编辑过]