When i run this program, i create a vector succesfully, but in the next loop the program stops working without giving an error. when i trie to cout one element of a vector by means of: cout<<Array[0][0][0]; or cout<<Array[0]; it also doest work.
Some backround:
I try to create a 3dimensional vector for a sudoku puzzel. I assign every element of the 2d puzzel with a vector containing all possible enties (1,2,3,4,5,6,7,8,9).
int main()
{
//create dynamic vector 3d
const int SizeOfSudoku = 3;
const int rows = pow(SizeOfSudoku,2);
const int columns = pow(SizeOfSudoku,2);
const int possibles = pow(SizeOfSudoku,2);
int main()
{
//create dynamic vector 3d
const int SizeOfSudoku = 3;
const int rows = pow(SizeOfSudoku,2);
const int columns = pow(SizeOfSudoku,2);
const int possibles = pow(SizeOfSudoku,2);