This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/cplbexam/strstrea/strstre/construc.cpp

16 lines
516 B
C++

#include <strstrea.h>
void main( void ) {
char s[20];
strstream test;
test << "Open Watcom C++" << endl; // write the string into the buffer
test >> s; // read the first string from the strstream object
cout << "The first string in the strstream object is \""
<< s << "\"" << endl;
test >> s; // skip the white space and read the other string
cout << "The second string in the strstream object is \""
<< s << "\"" << endl;
}