1
0
mirror of https://github.com/krislamo/knrc.git synced 2024-09-19 21:00:35 +00:00
knrc/06-line-count.c

13 lines
137 B
C
Raw Normal View History

2021-11-09 05:36:42 +00:00
#include <stdio.h>
int main()
{
int c, n1;
n1 = 0;
while ((c = getchar ()) != EOF)
if (c == '\n')
++n1;
printf("%d\n", n1);
}