C++ 字符串转数组
时间: 2023-11-12 12:59:52 浏览: 126
C++字符串转换
可以使用字符串的成员函数 `c_str()` 将字符串转换为字符数组。例如:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "hello";
char arr[6];
strcpy(arr, str.c_str());
for (int i = 0; i < 5; i++) {
cout << arr[i] << " ";
}
cout << endl;
return 0;
}
```
输出结果为:
```
h e l l o
```
阅读全文