home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX1120.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-27  |  291 b   |  13 lines

  1. // \EXAMPLES\EX1120.CPP
  2.  
  3. #include <strstrea.h>        // #include <strstream.h>
  4.  
  5. void main() {
  6.    char c;
  7.    char* buf_in = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  8.    istrstream in_stream(buf_in);    // declare input stream
  9.    while ( in_stream >> c ) {
  10.          cout << c << endl;
  11.    }
  12. }
  13.