how to store string in char array c++ code example
Example: c++ string to char array
const char *array = tmp.c_str(); //For const char array
char *array = &tmp[0]; // If you need to modify the array
const char *array = tmp.c_str(); //For const char array
char *array = &tmp[0]; // If you need to modify the array