Question About Array

 

Hi Guy

why if  i  declare  array in this  mode  give me  error ??

int de=61;

int Array[de];

 

Only Static arrays can be declared with an initial size and that size must always be a constant. See the following link about the difference between Dynamic and Static arrays:

For a Dynamic array, you should use ArrayResize() function to set or change its size and you should declare it without an initial size as shown in the example code at the documentation link provided:

 

o thankz  so much

Reason: