home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 099 / IOSTREAM.ZIP / EX_I11.CPP < prev    next >
C/C++ Source or Header  |  1993-01-07  |  378b  |  24 lines

  1.  // EXAMPLE INPUT-11
  2.  
  3.  // DEMONSTRATE HOW TO READ IN A
  4.  // CHARACTER AND BYPASS LEADING
  5.  // WHITESPACE
  6.  
  7.  #include <header.h>
  8.  
  9.  int main()
  10.  {
  11.     const char quote = '\'' ;
  12.  
  13.     cout << "Enter a character: " ;
  14.     char ch ;
  15.     cin >> ch ;
  16.     cout << "You entered: "
  17.          << quote
  18.          << ch
  19.          << quote
  20.          << '\n' ;
  21.  
  22.     return 0 ;
  23.  }
  24.