Rewrite each one in a way that makes sense to you.

1.


int arr[] = {5,6,7,8,9,10};
int x = 1;
int *p = &arr[2]; // p points to the 7
p--; // p points to the 6
x = p[x] ...