Computes the length of a string.
#include <string.h>
size_t strlen (
const char *s);
(IN) Points to the string whose length is to be computed.
Returns the number of characters that precede the null-terminating character.