I have a problem with push_back, it doesn't work with my code :(
const int DIM = 10;
vector<char[DIM]> categorie;
int function_1(char cat[DIM]){
categorie.push_back(cat);
return 0;
}
how can I resolve?
Thanks!
PS: I'm using Eclipse CDT