std::strlen
From cppreference.com
Template:cpp/string/byte/sidebar
| Defined in header <cstring>
|
||
| size_t strlen( char *str ); |
||
Returns the length of the given byte string.
Parameters
| str | - | pointer to the null-terminated byte string to be examined |
Return value
the length of the null-terminated string str.
Example
| This section is incomplete Reason: no example |