It is possible to call .c_str() for a C++ const string.
In order to efficiently implement this, it means that it must internally store an extra null character. (Otherwise, copying or modifying data would be required for a .c_str() call)
Therefore a C++ string is always null-terminated, even before calling c_str().
Right? Or wrong?