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

  1.  // EXAMPLE INPUT-24
  2.  
  3.  // DEMONSTRATE HOW TO READ IN A
  4.  // STRING AND RETAIN WHITESPACE,
  5.  // BOTH LEADING AND EMBEDDED
  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.get(string , length) ;
  18.     cout << "Your string: "
  19.          << quote
  20.          << string
  21.          << quote
  22.          << '\n' ;
  23.  
  24.     return 0 ;
  25.  }
  26.