strlen() - find length of string
#include <string.h>
size_t strlen (const char *s)
The strlen(3) function computes the length of the string s.
The strlen(3) function returns the number of characters that precede the terminating NUL character.