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/charlen.cpp

20 lines
579 B
C++

#include <strstrea.h>
void main( void ) {
char *pch, s[20];
int len = 20;
pch = new char [len];
strstream test ( pch, len );
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;
delete pch;
}