home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / learn / lcount.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  164 b   |  13 lines

  1. #include "stdio.h"
  2.  
  3. main()    /* count lines in something */
  4. {
  5.     register n, c;
  6.  
  7.     n = 0;
  8.     while ((c = getchar()) != EOF)
  9.         if (c == '\n')
  10.             n++;
  11.     printf("%d\n", n);
  12. }
  13.