]> zdv2.bktei.com Git - BK-2023-05.git/blob - src/kr_exercises/ch1/s1.5/count_chars_v2.c
feat(src/kr/ch1/s1.1/p6):Add hello world example
[BK-2023-05.git] / src / kr_exercises / ch1 / s1.5 / count_chars_v2.c
1 #include <stdio.h>
2
3 /* count characters in input; 2nd version */
4
5 int main() {
6 double nc;
7
8 for (nc = 0; getchar() != EOF; ++nc)
9 ;
10 printf("%.0f\n", nc);
11 };
12