A bit late to this question, nonetheless, this attempts to answer the why-part of your question:
Part of the reason is because we use zero-based indexing/offsets when addressing memory.
The easiest example is an array. Think of an "array of 6 items" as a location to store 6 data items. If this array's start location is at memory address 100, then data, let's say the 6 characters 'apple\0', are stored like this:
memory/
array contains
location data
100 -> 'a'
101 -> 'p'
102 -> 'p'
103 -> 'l'
104 -> 'e'
105 -> '0'
So for 6 items, our index goes from 100 to 105. Addresses are
generated using base + offset, so the first item is at base memory location 100 + offest 0
(i.e., 100 + 0), the second at 100 + 1, third at 100 + 2 .. until 100
+ 5 is the last location.
This is the primary reason we use zero based indexing and leads to
language constructs such as for loops in C
for (int i = 0; i < LIMIT; i++)
or in Python
for i in range(LIMIT):
When you program in a language like C where you deal with pointers
more directly, or assembly even more so, this base+offset scheme
becomes much more obvious.
Because of the above, many language constructs automatically use this range from start to length-1.
You might find this article on Zero-based numbering on Wikipedia interesting, and also this question from Programmers SE.
Example:
In C for instance if you have an array ar and you subscript it as ar[3] that really is equivalent to taking the (base) address of array ar and adding 3 to it => *(ar+3) which can lead to code like this printing the contents of an array, showing the simple base+offset approach:
for(i = 0; i < 5; i++)
printf("%c\n", *(ar + i));
really equivalent to
for(i = 0; i < 5; i++)
printf("%c\n", ar[i]);