ft_strlen
Subject
STRLEN(3) (simplified)
NAME
strlen -- find length of string
SYNOPSIS
size_t(const char *s);
DESCRIPTION
The strlen() function computes the length of the string s.
RETURN VALUES
The strlen() function returns the number of characters that precede the terminating NUL character.Understandable explanation
What does this mean ?
Hints
Commented solution
Last updated