Strings in C++

The characters of a string are of type char; exactly what char means is permitted to vary from one implementation to another, but a char is practically invariably an 8 bit value. Whether the range is (-128 to +127) or (0 to +255) is also undefined, and really does vary between compilers. ................
................