home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / EXAMPLES.ZIP / INTRO12.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  365 b   |  17 lines

  1. // INTRO12.CPP--Example from Chapter 3, " An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4. #include <conio.h>
  5.  
  6. int main()
  7. {
  8.     int one_char;
  9.     cout << "\nEnter a character: ";
  10.     one_char = getch();
  11.     cout << "\nThe character you entered was "
  12.              << (char) one_char << '\n';
  13.     cout << " Its ASCII value is "<< (int) one_char << '\n';
  14.  
  15.     return 0;
  16. }
  17.