strlen()

Syntax:

#include <string.h>
size_t strlen( char *str );



Description:
The strlen() function returns the length of str (determined by the number of characters before null termination).

Related Topics:
memcpy(), strchr(), strcmp(), strncmp()

Vadim avatar

Vadim