int a[10]; int* p = a; // now p points to a[0]; *a = 12; // same as a[0] = 12;
*(a + 3) means the same as a[3]
*(a + n) means the same as a[n]