5 int c
, i
, nwhite
, nother
;
9 for(i
= 0; i
< 10; i
++)
12 while ((c
= getchar()) != EOF
)
13 if(c
>= '0' && c
<= '9')
15 else if (c
== ' ' || c
== '\n' || c
== '\t')
21 for(i
= 0; i
< 10; ++i
)
22 printf(" %d", ndigit
[i
]);
23 printf(", whitespace = %d, other = %d\n", nwhite
, nother
);