I am trying to write a program that has a vector of char arrays and am have some problems.
char test [] = { 'a', 'b', 'c', 'd', 'e' };
vector<char[]> v;
v.push_back(test);
Sorry this has to be a char array because I need to be able to generate lists of chars as I am trying to get an output something like.
a a a b a c a d a e b a b c
Can anyone point me in the right direction?
Thanks
What I found out is that it's OK to put char* into a std::vector: