1
0
mirror of https://github.com/krislamo/knrc.git synced 2024-11-10 00:30:35 +00:00
knrc/06-line-count.c

13 lines
137 B
C

#include <stdio.h>
int main()
{
int c, n1;
n1 = 0;
while ((c = getchar ()) != EOF)
if (c == '\n')
++n1;
printf("%d\n", n1);
}