learn_c/intro/count_char.c

13 lines
157 B
C

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