c 语言 求字符串长度
时间: 2023-07-14 13:58:33 浏览: 95
C语言计算字符的长度
5星 · 资源好评率100%
在 C 语言中,可以使用 `strlen()` 函数求字符串的长度。它的函数原型如下:
```c
size_t strlen(const char *str);
```
其中,`str` 是要求长度的字符串,函数返回的是 `str` 中的字符数,不包括字符串末尾的空字符 `\0`。需要注意的是,`strlen()` 函数只适用于以空字符结尾的字符串。
举个例子,如果要求字符串 `s` 的长度,可以使用以下代码:
```c
#include <string.h>
int main() {
char s[] = "hello";
size_t len = strlen(s);
printf("The length of s is %zu\n", len);
return 0;
}
```
输出结果为:
```
The length of s is 5
```
阅读全文