私はそれを学ぶためにCに関する本を読んでいて、本に書かれているすべてのコードを書いています.私はそれを実行しますが、何も表示されません。何も表示されません。何かを入力してEnterキーを押しても何も起こらないように、それぞれのものがいくつあるかを教えてくれるはずですか?
私はこのプログラムが実際に何かを出力することになっているかどうかを理解するにはあまりにも新しいので、ここに投稿して意見を得ると思いました.私がそれを実行して何かを入力しているときは何も起こらず、永遠に入力し続けることができます。
ここにコードがあります
#include <stdio.h>
int main()
{
int c, i, nwhite, nother;
int ndigit[10];
nwhite = nother = 0;
for (i = 0; i < 10; ++i)
ndigit[i] = 0;
while ((c = getchar()) != EOF)
if (c >= '0' && c <= '9')
++ndigit[c-'0'];
else if (c == ' ' || c == '\n' || c == '\t')
++nwhite;
else
++nother;
printf("digits =");
for (i = 0; i < 10; ++i)
printf(" %d", ndigit[1]);
printf(", white space = %d, other = %d\n", nwhite, nother);
}