在C语言中,可以使用strlen()
函数来求字符数组的长度。strlen()
函数位于string.h
头文件中,用于计算字符串的长度,即字符串中字符的个数(不包括结尾的’\0’字符)。
以下是一个示例代码来求字符数组的长度:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
int length = strlen(str);
printf("The length of the string is: %d\n", length);
return 0;
}
在上面的代码中,首先定义了一个字符数组str
,然后使用strlen()
函数来计算该字符数组的长度,并将结果存储在变量length
中。最后通过printf()
函数打印出字符数组的长度。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言圣诞树代码怎么写