Answers for "how to make string 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
-1

convert char to char*

char c;
char *pChar = &c;
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language