Defined in header
A null-terminated multibyte string (NTMBS), or "multibyte string", is a sequence of nonzero bytes followed by a byte with value zero (the terminating null character).
static const size_type npos = -1;
basic_string& append( size_type count, CharT ch ); (1)
void push_back( CharT ch );
The C++ strings library includes support for two general types of strings: std::basic_string - a templated class designed
Page 1 of 17