c语言怎么数字符串长度
时间: 2023-06-21 15:20:13 浏览: 88
在C语言中,可以使用`strlen`函数来计算字符串的长度。该函数定义在头文件`string.h`中,使用时需要传入一个字符串作为参数,返回值为该字符串的长度(不包括字符串末尾的空字符'\0')。以下是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "hello world";
int len = strlen(str);
printf("The length of the string is %d\n", len);
return 0;
}
```
输出结果为:
```
The length of the string is 11
```
阅读全文