用strlen求数组长度
时间: 2024-03-09 16:48:41 浏览: 92
strlen函数-C语言——数组
可以使用strlen函数来计算一个C语言字符串的长度,例如:
```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.", len);
return 0;
}
```
输出结果为:The length of the string is 12.
阅读全文