Answers for "convert sting to char"

C++
4

string to char*

std::string str = "string";
const char *cstr = str.c_str();
Posted by: Guest on February-24-2021
0

string to char

string temp = "cat";
char * tab2 = new char [temp.length()+1];
strcpy (tab2, temp.c_str());
Posted by: Guest on October-29-2021

Browse Popular Code Answers by Language