首页 热点资讯 义务教育 高等教育 出国留学 考研考公

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

循环

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com