在C语言中,可以使用strlen()
函数来获取字符串的长度。strlen()
函数需要包含string.h
头文件,并且接受一个字符串作为参数,返回该字符串的长度(不包括终止符’\0’)。以下是一个示例代码:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
int length = strlen(str);
printf("Length of the string is: %d\n", length);
return 0;
}
在上面的示例中,strlen()
函数被用来获取字符串str
的长度,并将结果赋值给变量length
。最后,使用printf()
函数打印出字符串的长度。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言接收字符串的函数是什么