Answers for "for cicle to convert 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

Browse Popular Code Answers by Language