home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap16 / line_cnt.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-07  |  261 b   |  14 lines

  1. /*  line_cnt.c -- An overly active line counter       */
  2. #include <stdio.h>
  3. main()
  4. {
  5.     int ch;
  6.     int lines = 0;
  7.  
  8.     while ( (ch = getchar() ) != EOF )
  9.         if ( ch = '\n')
  10.             lines++;
  11.     printf("There were %d lines\n", lines);
  12. }
  13.  
  14.