在C语言中,可以使用sizeof运算符来求字符串的长度。但是需要注意的是,sizeof运算符求得的是字符串在内存中占用的字节数,而不是字符串的实际长度(即字符的个数)。
如果想要求字符串的实际长度,可以使用strlen函数。下面是使用sizeof和strlen两种方法求字符串长度的示例代码:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
int size_with_sizeof = sizeof(str);
int size_with_strlen = strlen(str);
printf("Size of str (with sizeof): %d\n", size_with_sizeof);
printf("Size of str (with strlen): %d\n", size_with_strlen);
return 0;
}
输出结果为:
Size of str (with sizeof): 15
Size of str (with strlen): 13
可以看到,使用sizeof求得的字符串长度为15,而使用strlen求得的字符串长度为13,因为strlen函数会计算字符串中的有效字符个数,不包括字符串结尾的空字符’\0’。