hairinmybellybutt@lemmy.world to Programmer Humor@lemmy.mlEnglish · 2 years agocountinglemmy.worldimagemessage-square7fedilinkarrow-up11arrow-down12
arrow-up1-1arrow-down1imagecountinglemmy.worldhairinmybellybutt@lemmy.world to Programmer Humor@lemmy.mlEnglish · 2 years agomessage-square7fedilink
minus-squareDestide@feddit.uklinkfedilinkEnglisharrow-up0·2 years agoHaaaaaang on is that why we start on 0…
minus-squaremacniel@feddit.delinkfedilinkarrow-up0·2 years agoNo. 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.
minus-squareBorgDrone@lemmy.onelinkfedilinkarrow-up0·edit-22 years agoNo, we start counting at one. We start indexing at zero. An array with one element has an element count of 1, and that element would be at index 0.
minus-squareLaggyKar@programming.devlinkfedilinkarrow-up1·2 years agoThis is how we end up with off-by-one errors
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.
No, we start counting at one. We start indexing at zero.
An array with one element has an element count of 1, and that element would be at index 0.
This is how we end up with off-by-one errors