|
slightly wrong: the declaration number is the size. So the first array is of 51 elements, and the second is an indefinite number as a multiple of 6; "dynamic" as you say.
You access elements by a zero based index, which would be 0-50 for the first array, and 0-5 for the second dimension of the second array.
|