string转char数组

如何才能把一个string型中的每一个字母存到一个chara[]中····并且能够输出a[5]是什么字母····用第二种方法能行···第一种不行,最后的p【1】不能输出,... 如何才能把一个string型中的每一个字母存到一个char a[]中····并且能够输出a[5]是什么字母····
用第二种方法能行···第一种不行,最后的p【1】不能输出,内存分配有问题·····
#include <iostream>
#include <string>

using namespace std;

int main(const char* p)
{
string sentence;

cout<<"please input your sentence:";
cin>>sentence;

int i=sentence.length();
cout<<i<<'\n';
p=sentence.c_str();
cout<<p[1];
return 0;
}
展开
 我来答
飞飞1930
2008-11-16 · TA获得超过817个赞
知道小有建树答主
回答量:269
采纳率:0%
帮助的人:345万
展开全部
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();
郁熊熊03n
2019-11-27 · TA获得超过1229个赞
知道小有建树答主
回答量:1801
采纳率:100%
帮助的人:8.5万
展开全部
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();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
CX3201
2008-11-16 · TA获得超过157个赞
知道小有建树答主
回答量:355
采纳率:0%
帮助的人:0
展开全部
循环
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式