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元/月。点击查看>>