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
Use std::string instead of char-arrays
std::string
std::string k ="abcde"; std::vector v; v.push_back(k);