=====c_str===== Syntax: #include const char* c_str() const; The function c_str() returns a const pointer to a regular C string, identical to the current string. The returned string is null-terminated. Note that since the returned pointer is of type const, the character data that c_str() returns cannot be modified. Furthermore, you do not need to call [[c/mem/free]] or [[keywords/delete]] on this pointer. Related Topics: [[String_operators]], [[data]]