// // pointer_array.c // // // Created by Bibhas Ghoshal on 20/02/21. // #include #define SIZE 4 int main() { int i,arr[SIZE] = {10,20,25,35},*p; printf("Contents of the array elements:\n"); for (i=0; i-SIZE; i--) { printf("p[d]=%d \n ",i,p[i]); } return 0; }