int main(void) { int x[5] = { 8, 6, 7, 5, 3 }; int *p = x + 4; int i; for (i = 0;i < 5;++i) printf("%d\n",*p); }