string转char数组
发布网友
发布时间:2022-04-25 20:46
我来回答
共3个回答
热心网友
时间:2022-06-17 06:37
char a[10];
string str="hello";
for(int i=0;i<10;i++)
a[i]=s.c_str()[i];
/*********************/
或者用字符串常量
const char *a;/*因为str.c_str()返回值是const char* 类型的*/
string str="hello";
a=str.c_str();
热心网友
时间:2022-06-17 06:37
char
a[10];
string
str="hello";
for(int
i=0;i<10;i++)
a[i]=s.c_str()[i];
/*********************/
或者用
字符串常量
const
char
*a;/*因为str.c_str()
返回值
是const
char*
类型的*/
string
str="hello";
a=str.c_str();
热心网友
时间:2022-06-17 06:38
循环