Why do I receive the error \"Variable-sized object may not be initialized\" with the following code?
int boardAux[length][length] = {{0}};
For C++ separate declaration and initialization like this..
int a[n][m] ; a[n][m]= {0};