A[i] in array is implemented as *(A+i) , For example if you have an array of integers and each integer takes 4 bytes.
Lets say starting memory address is 100 then memory locations for each element would be 100,104,108,112,116,…… But If Array index starts with 1 then A[i] will be…