int main()
{
int a[ ]={1,2,3,4,5,6,7,8,9};
int *ptr= &a[4];
while(ptr!=a){
printf("%d\n",*ptr);
ptr--;
}
return 0;
}

Posted on by