What will be the output of the following program on GCC compiler?
![]()
Practice Pointers –
What will be the output of the following program on GCC compiler?
#include <stdio.h>
int main() {
int arr[]={0,1,2,3,4};
int i,*p;
for(p=&arr[4];p>=&arr[0];p--)
printf("%d,",*p );
return 0;
}