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 >
C/C++ Source or Header  |  2002-05-05  |  183b  |  15 lines

  1. /* Demonstrates the getchar() function. */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main( void )
  6. {
  7.    int ch;
  8.  
  9.    while ((ch = getchar()) != '\n')
  10.         putchar(ch);
  11.  
  12.    return 0;
  13. }
  14.  
  15.