home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / ctutor2.zip / BETTERIN.C < prev    next >
Text File  |  1989-11-10  |  784b  |  34 lines

  1.                                         /* Chapter 9 - Program 3 */
  2. #include "stdio.h"
  3. #include "conio.h"
  4. #define CR 13       /* this defines CR to be 13 */
  5. #define LF 10       /* this defines LF to be 10 */
  6.  
  7. void main()
  8. {
  9. char c;
  10.  
  11.    printf("Input any characters, hit X to stop.\n");
  12.  
  13.    do {
  14.       c = getch();                    /* get a character */
  15.       putchar(c);                     /* display the hit key */
  16.       if (c == CR) putchar(LF);       /* if it is a carriage return
  17.                                          put out a linefeed too */
  18.    } while (c != 'X');
  19.  
  20.    printf("\nEnd of program.\n");
  21. }
  22.  
  23.  
  24.  
  25. /* Result of execution
  26.  
  27. Input any characters, hit X to stop.
  28.  
  29. (The output depends on what characters you enter.)
  30.  
  31. End of program.
  32.  
  33. */
  34.