strlen

Returns the length of a string of ASCII characters. The returned length does not include the terminating null character (\0).

Format

#include  <string.h>

size_t strlen  (const char *str);

Argument

str
A pointer to the character string.

Return Value
The length of the string. 


Previous Page | Next Page | Table of Contents | Index