strlen — finds the length of a string
int strlen(str); string str;
int strlen(
)
string
str
strlen returns the length of str as an integer.
Example 51. strlen Example
int length = strlen("Hello, world!"); // length = 13