1. data
string str="hellow world";
char *p =const_cast<char *>(str.data());
2. c_str
string str="hello world";
char *p=const_cast<char *>(str.c_str());
3. str.copy()
string str="hello world"
char p[40];
str.copy(p,str.length(),0);
p[str.length]=' ';