admin 管理员组

文章数量: 887021


2024年1月18日发(作者:apche)

strlen用法举例

strlen函数用于计算字符串的长度,不包括字符串结尾的零终止符。

例如,下面的代码可以计算字符串s的长度:

c

#include

#include

int main() {

char s[] = "Hello, world!";

int len = strlen(s);

printf("The length of the string is: %dn", len);

return 0;

}

运行结果为:

The length of the string is: 13

以上代码输出了字符串s的长度,即13个字符。


本文标签: 字符串 长度 计算 代码