在C语言中,要获取一个字符串的长度,可以使用标准库函数strlen()
。该函数需要包含头文件<string.h>
,并接受一个字符串作为参数,返回其长度(不包括字符串末尾的空字符’\0’)。示例如下:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
int len = strlen(str);
printf("Length of the string: %d\n", len);
return 0;
}
在上面的示例中,strlen()
函数返回的字符串长度为13
,因为字符串"Hello, World!"共有13个字符。