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