I want to to put in array some QString words but I don't know how can I do. I have try with Vector like this :
int i = 10;
int j = 10;
QVector < QVector < QString> > tableau;
QString word = "Word";
tableau[i][j] = word;
But that don't work. This is the error message :
ASSERT failure in QVector<T>::operator[]: "index out of range"
Ah have try with std::vector and std::string but this don't work to
So can you explain me how to create a string array of two dimensions to put word Thanks