I need to print the strings from this 3d matrix using an iterator.
This is the declaration
vector <string> transicoes[estados.size()][alfabeto.size()];
I tried printing like this
printf("%s", transicoes[i][j][k]);
but I get this error message:
cannot pass objects of non-trivially-copyable type
How can I do this?
EDIT: changed to cout and it works now, thanks