Dear all,
I am trying to create and initialize a two dimensional and dynamic boolean array with all elements set to zero.
I tride
Code:
bool** myarray;
myarray= new bool[dim1][dim2]
But that doe snot work.
Do you have any suggestions?
Thanks