How do you convert from array notation to pointer notation?

Answer:

In the C and C++ languages the array notation arr[i] is completely equivalent to the pointer notation *(arr + i).

First answer by Avir. Last edit by Avir. Contributor trust: 202 [recommend contributor recommended]. Question popularity: 22 [recommend question].