#include <string.h>
size_t strlen (char *s);
size_t strlen
The strlen function computes the length of the string pointed to by s.
The strlen function returns the number of characters that precede the terminating null character.