home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_05 / 9n05067a < prev    next >
Text File  |  1991-03-04  |  184b  |  13 lines

  1.  
  2. #include <stdio.h>
  3. main()
  4.      {
  5.      int c;
  6.      while (1)
  7.              {
  8.              c = getch();
  9.              printf ("\n Value of c is %d", c);
  10.              }
  11.     }
  12.  
  13.