View Single Post
ddhoward
Veteran Member
Join Date: May 2012
Location: California
Old 03-10-2014 , 11:24   Re: [HELP] Adjust Code
#5

Remember that when declaring an array, you specify how many "slots" it has. When referencing these slots later, the first slot is '0'. Second one is '1'. Etc.

So when declaring a new array of size 33, the first position in the array is 1-1 (0), and the last is 33-1 (32).
__________________

Last edited by ddhoward; 03-10-2014 at 11:25.
ddhoward is offline