c语言中代码判断字符串的长度
时间: 2023-06-19 09:08:14 浏览: 84
字符串长度
在C语言中,可以使用标准库函数`strlen`来判断一个字符串的长度,即它所包含的字符数,不包括字符串末尾的空字符('\0')。`strlen`函数的原型定义在`string.h`头文件中,示例代码如下:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "hello world";
int len = strlen(str);
printf("The length of '%s' is %d\n", str, len);
return 0;
}
```
输出结果为:
```
The length of 'hello world' is 11
```
注意,`strlen`函数只能用于计算字符串的长度,不能用于判断两个字符串是否相等,如果需要比较两个字符串是否相等,可以使用`strcmp`函数。
阅读全文