.

If by dynamic you mean with a size set during runtime (it is implied, but just to be sure) then I would do it as follows:
Code:
float** MyArray;
MyArray = new float[x][y];
Just because I would do it that way doesn't mean it's the best way of doing it.
 
Another option is to use the standard library. You can do vectors of vectors and the like
 
Back
Top Bottom