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/string/pubfun/poscharb.cpp

16 lines
410 B
C++

#include <string.hpp>
void main( void ) {
String s ("Open Watcom C++ compiler");
int pos = 15;
char ch = 'i';
cout << "The original string: \"" << s << "\"" << endl;
cout << "Change the character of offset " << pos
<< " of the string to be " << "'" << ch << "'" << endl;
s.operator []( pos ) = ch;
cout << "Modified string: \"" << s << "\"" << endl;
}