size
优质
小牛编辑
126浏览
2023-12-01
描述 (Description)
C库函数size_t strlen(const char *str)计算字符串str的长度,但不包括终止空字符。
声明 (Declaration)
以下是strlen()函数的声明。
size_t strlen(const char *str)
参数 (Parameters)
str - 这是要找到其长度的字符串。
返回值 (Return Value)
此函数返回字符串的长度。
例子 (Example)
以下示例显示了strlen()函数的用法。
#include <stdio.h>
#include <string.h>
int main () {
char str[50];
int len;
strcpy(str, "This is iowiki.com");
len = strlen(str);
printf("Length of |%s| is |%d|\n", str, len);
return(0);
}
让我们编译并运行上面的程序,它将产生以下结果 -
Length of |This is iowiki.com| is |26|