C语言如何获取字符串长度

651
2023/7/10 20:59:25
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

C语言中可以使用strlen()函数来获取字符串长度。该函数需要一个字符串作为参数,返回值为该字符串的长度(不包括字符串末尾的’\0’)。

例如:

#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, world!";
int len = strlen(str);
printf("The length of the string is %d\n", len);
return 0;
}

输出结果为:

The length of the string is 13

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>