I'm a little confused about what is going on with arrays.
If I:
DIM Array(20, 20)
"Array" should be from 0 to 19, 0 to 19. Is that correct?
However;
I am actually doing each loop 21 times and no runtime error is generated. Why?
If I:
DIM Array(20, 20)
"Array" should be from 0 to 19, 0 to 19. Is that correct?
However;
Code:
DIM Array(20, 20) FOR I = 0 TO 20 FOR J = 0 TO 20 Array(I, J) = 2 NEXT J NEXT I
Comment