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

  1.  // EXAMPLE INPUT-21
  2.  
  3.  // DEMONSTRATE HOW TO READ IN A
  4.  // STRING AND BYPASS WHITESPACE
  5.  // TOTALLY (LOOKS LIKE scanf)
  6.  
  7.  #include <header.h>
  8.  
  9.  const int length = 100 ;
  10.  
  11.  int main()
  12.  {
  13.     char string [length] ;
  14.     const char quote = '\"' ;
  15.  
  16.     cout << "Enter a string: " ;
  17.     cin >> string ;
  18.     cout << "Your string: "
  19.          << quote
  20.          << string
  21.          << quote
  22.          << '\n' ;
  23.  
  24.     return 0 ;
  25.  }
  26.