home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list14_2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-16  |  165 b   |  12 lines

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