home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day14
/
getchar.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-05-05
|
183b
|
15 lines
/* Demonstrates the getchar() function. */
#include <stdio.h>
int main( void )
{
int ch;
while ((ch = getchar()) != '\n')
putchar(ch);
return 0;
}