When we access an element by index, for example [i], the compiler converts it to [a + i]. Thus, the index of the first element is zero because [a + 0] will give us "a", which points to the first element in the array. This is quite obvious, for example, for C ++, but not for later languages ββsuch as C #.
mayor source share