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/iostream/istream/rshchbuf.cpp

18 lines
378 B
C++
Raw Normal View History

#include <iostream.h>
void main( void ) {
char *bp;
int len = 20;
bp = new char [len];
/* read until a whitespace character is found or the maximum size has
been read */
cin.width( len );
cout << "Enter a string:" << endl;
cin >> bp;
cout << "The string you have just entered: " << endl;
cout << bp << endl;
delete bp;
}