Hi
I want to define a two dimensional array whose size N,M is not known at compile time.
I know one way: define an array of pointers to an array of pointers and then write a little loop that does the allocation.
However this looks clumsy to me.
The following does not work
int array[][] = new int[N][M];
Is new int [N][M] acceptable as an expression, if so what would the left hand side look like?