strlen

From cppreference.com
< c | string | byte
Defined in header <string.h>
size_t strlen( const char *str );

Returns the length of the given byte string.

Contents

[edit] Parameters

str - pointer to the null-terminated byte string to be examined

[edit] Return value

The length of the null-terminated string str.

[edit] Example

#include <string.h>
#include <stdio.h>
 
int main()
{
   const char str[] = "How many characters contains this string?";
 
   printf("without null character: %d\n", strlen(str));
   printf("with null character: %d\n", sizeof(str));
 
   return 0;
}

Output:

without null character: 41
with null character: 42

[edit] See also