c语言判断字符串长度
时间: 2023-06-21 19:07:22 浏览: 105
C语言-判断输入字符串是否为回文串.txt
在C语言中,使用strlen函数可以计算字符串的长度,该函数需要包含头文件<string.h>。
例如:
```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
```
阅读全文