9 lines
146 B
C++
9 lines
146 B
C++
|
#include <string.hpp>
|
||
|
|
||
|
void main( void ) {
|
||
|
|
||
|
String s ('W');
|
||
|
|
||
|
cout << "The string contains only one character '" << s << "'" << endl;
|
||
|
}
|