ArrayResize for 2D arrays

 

Hi all,

A quick question here, how would I write the following using ArrayResize?  Thank you :)

double arr[10][12]
 
  1. You don't. You can only change the first dimension. double arr[][12]; Arrayresize(arr, 10);
  2. You can use an a single array of a struct/class which contains an array, but you will have to resize each sub-array yourself.
  3. There probably is a class that implements it.
Reason: