#include int main() { /*int x; scanf("%d", &x); printf("Address of x is %dn",&x); //%x location of x in hexadecimal p = &x; printf("Address of p is %dn",p); *p=0; printf("Value of x is %dn",*p); printf("Value of x is %dn",x); printf("Address of p is %dn",&p); int y=10; p=&y; *p=3; printf("Address of p is %dn",p); printf("Value of p is %dn",*p); printf("Value of y is %dn",y); printf("Address of y is %dn",&p); int a[5], i; for(i=0; i<=4;i++) { scanf("%d",arr+i); } /*for(int i=0;i<5;i++) { printf("%dn",*arr+i); } */ for(int i=0;i<=4;i++) { p= arr[4-i]; printf("%dn",p); } }