Is there any way to define the length of an array with a extern variable?

 
Check it:
extern  int  Length=15;

...
double Array[];
.....

ArrayResize(Array,Length);


 
Check it:
extern  int  Length=15;

...
double Array[];
.....

ArrayResize(Array,Length);





is there a way to resize the second dimension of an array?
 
Reason: