strlen - General: Returns the number of characters in a
null-terminated string
int strlen(
char *s );
Specifies a pointer to a string (an array of characters
terminated by a null character).
The strlen routine returns the number of characters in s.
The count does not include the terminating null character.
Note that the character size is 1 byte.
The strlen routine returns the number of characters in s,
not counting the terminating null character.
strlen(9r)
[ Back ] |