Answers for "make char to string"

C++
1

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