I
Immortal Nephi
Do string support extended ASCII (128 through 255)? Can I use typedef
like this below.
typedef basic_string<unsigned char, char_traits<unsigned char>,
allocator<unsigned char> > ustring;
Why do C++ Compiler fail to compile if I do below.
ustring s1 = ""; // Error
I want to put all 256 ASCII codes into full string.
like this below.
typedef basic_string<unsigned char, char_traits<unsigned char>,
allocator<unsigned char> > ustring;
Why do C++ Compiler fail to compile if I do below.
ustring s1 = ""; // Error
I want to put all 256 ASCII codes into full string.