]> zdv2.bktei.com Git - BK-2023-05.git/blob - src/kr_exercises/ch1/s1.5/count_lines.c
feat(src/kr/s1.5):Add more examples
[BK-2023-05.git] / src / kr_exercises / ch1 / s1.5 / count_lines.c
1 #include <stdio.h>
2
3 /* count lines in input */
4
5 int main() {
6 int c, nl;
7
8 nl = 0;
9 while ((c = getchar()) != EOF)
10 if (c == '\n')
11 ++nl;
12 printf("%d\n", nl);
13 };