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

  1.  /* Using getch() to input strings. */
  2.  
  3.  #include <stdio.h>
  4.  #include <conio.h>
  5.  
  6.  #define MAX 80
  7.  
  8.  main()
  9.  {
  10.      char ch, buffer[MAX+1];
  11.      int x = 0;
  12.  
  13.      while ((ch = getch()) != '\r' && x < MAX)
  14.          buffer[x++] = ch;
  15.  
  16.      buffer[x] = '\0';
  17.  
  18.      printf("%s", buffer);
  19. }
  20.