C++实现将字符串转换为字符数组
时间: 2024-05-03 07:21:31 浏览: 103
AIS解析中将字符串转化为6比特字节数组c++.txt
字符串本身就是由字符数组组成的,因此不需要进行转换。如果要将字符串赋值给字符数组,可以使用strcpy函数。
示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, world!";
char arr[strlen(str)+1];
strcpy(arr, str);
printf("%s\n", arr);
return 0;
}
```
输出:
```
Hello, world!
```
阅读全文