c语言字符串长度
时间: 2023-06-22 10:18:07 浏览: 41
在 C 语言中,可以使用 strlen() 函数来获取一个字符串的长度。该函数需要传入一个字符串作为参数,返回该字符串的长度,不包括字符串末尾的空字符 '\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 13
```
阅读全文