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

  1.  // EXAMPLE MANIP-13
  2.  
  3.  // DEMONSTRATE HOW TO READ IN A
  4.  // STRING AND RETAIN EMBEDDED
  5.  // WHITE SPACE, BUT BYPASS
  6.  // LEADING WHITE SPACE
  7.  
  8.  #include <header.h>
  9.  
  10.  const int length = 100 ;
  11.  
  12.  int main()
  13.  {
  14.     char string [length] ;
  15.     const char quote = '\"' ;
  16.  
  17.     cout << "Enter a string: " ;
  18.     cin >> ws ;
  19.     cin.get(string , length) ;
  20.     cout << "Your string: "
  21.          << quote
  22.          << string
  23.          << quote
  24.          << endl ;
  25.  
  26.     return 0 ;
  27.  }
  28.