devc++获取字符串长度代码
时间: 2023-08-16 21:10:01 浏览: 101
编写一个程序,求字符串的长度
5星 · 资源好评率100%
可以使用标准库函数 `strlen` 来获取字符串的长度,示例代码如下:
```c++
#include <iostream>
#include <cstring>
int main() {
char str[] = "hello";
int len = strlen(str);
std::cout << "Length of string is: " << len << std::endl;
return 0;
}
```
该程序输出:`Length of string is: 5`,表示字符串 `"hello"` 的长度为 5。
阅读全文