419
counting
(lemmy.world)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Haaaaaang on is that why we start on 0...
No. We count start at zero because the array already starts with an element of a specific size. Starting at 1 would always skip that initial element.
You could have "empty arrays" in a language if you wanted. The real reason is that you start with an offset of zero as you read an array from memory at hardware level, and so this way address is just "start address + element size * element number".