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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-04-07
|
261 b
|
14 lines
/* line_cnt.c -- An overly active line counter */
#include <stdio.h>
main()
{
int ch;
int lines = 0;
while ( (ch = getchar() ) != EOF )
if ( ch = '\n')
lines++;
printf("There were %d lines\n", lines);
}