devc++如何获取字符串长度
时间: 2023-08-18 17:08:32 浏览: 187
求字符串长度几种方法
5星 · 资源好评率100%
在 Dev-C++ 中,可以使用 `strlen` 函数来获取一个字符串的长度。`strlen` 函数位于 `string.h` 头文件中,可以通过在代码中添加 `#include <string.h>` 来引入该函数。
以下是一个示例代码,演示了如何使用 `strlen` 函数来获取字符串的长度:
```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;
}
```
上述代码定义了一个字符数组 `str`,并使用 `strlen` 函数获取了字符串的长度,最后将长度输出到屏幕上。在 Dev-C++ 中编译并运行该代码,输出结果应为:
```
The length of the string is: 13
```
阅读全文