C++ Programming/Code/Standard C Library/Functions/strlen
strlen
Syntax |
#include <cstring>
size_t strlen( char *str );
|
The strlen() function returns the length of str (determined by the number of characters before null termination).
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/strlen%20