I have a vector which i wish to fill with char's, so that each char is then a pointer to a vector.
vector<char> list;
list[0] = 'A';
list[1] = 'B';
How do I make 'A' and 'B' pointers to other vectors?
void Create_Pointers(char pointer_name)
{
pointer_name = new vector<char *>;
list.push_back(pointer_name);
}
would pointer_name have to be declared as a pointer?