home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / INTRO12.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  365b  |  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.