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

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