12 lines
158 B
C
12 lines
158 B
C
|
#include <stdio.h>
|
||
|
|
||
|
/* count characters input; 2nd version */
|
||
|
main()
|
||
|
{
|
||
|
double nc;
|
||
|
|
||
|
for (nc = 0; getchar() != EOF; ++nc)
|
||
|
;
|
||
|
printf("%.0f\n", nc);
|
||
|
}
|