I'm trying to push back a const char* in a vector in a forloop. char_temp is a struct called segment, and chars_temp is a vector of structs. See my code below:
for (int bg = 0; bg < str.size(); bg++) {
string sym(1, str[bg]);
const char* bg_cc;
bg_cc = sym.c_str();
char_temp.symbol_first = bg_cc;
char_temp.symbol_second = "*";
chars_temp.push_back(char_temp);
}
The problem is that the push backed char is a pointer, so the char_temp.symbol_first consists of the same address. The struct needs a const char* for char_temp.symbol_first, so how can I fill this vector with different addresses within the forloop?
I tried const char* bg_cc = new char in the forloop, but bg_cc keeps having the same address.
Thanks in advance!
