#include<iostream.h> #include<conio.h> main() { clrscr(); int array[10]={0,1,2,3,4,5,6,7,8,9}; cout<<\"\\n The contents of the array are : \"<<endl; cout<<\"\\n Elements :\"<<\"\\t\\t Addresses:\"<<\"\\t\\t Value:\"<<endl; for(int count_1=0;count_1<10;count_1++) { cout<<\"\\t\"<<\" array [\"<<count_1<<\"]\"<<\"\\t\\t\"<<&array[count_1]<< \"\\t\\t\"<<array[count_1]<<endl; } getch(); clrscr(); cout<<\"\\n The contents of the array in reverse order are : \"<<endl; cout<<\"\\n Elements :\"<<\"\\t\\t Addresses:\"<<\"\\t\\t Value:\"<<endl; int temp_array[10]={0}; for(int count_2=9,count_3=0;count_2>=0,count_3<10;count_2--,count_3++) temp_array[count_3]=array[count_2]; for(int count_4=0;count_4<10;count_4++) { array[count_4]=temp_array[count_4]; cout<<\"\\t\"<<\" array [\"<<count_4<<\"]\"<<\"\\t\\t\"<<&array[count_4]<< \"\\t\\t\"<<array[count_4]<<endl; } getch(); return 0; }