来自K& R的字符计数示例

时间:2014-02-09 19:03:06

标签: c eof kernighan-and-ritchie

K&安培; R

字符计数示例 我无法按照书中的预期获得输出。例如,当我输入输入“我回来了”并按回车时,它应该给我一个答案,但不是为什么呢?

#include <stdio.h>
/* count characters in input; 1st version */
main()   {
   long nc;
   nc = 0;
   while (getchar() != EOF)
       ++nc;
   printf("%ld\n", nc);
}

1 个答案:

答案 0 :(得分:5)

我认为您没有看到输出,因为您没有从键盘发送EOF。因此,请尝试按Ctrl + D

发送