โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
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;
}
What will be the output of the following program on GCC compiler?
What will be the output of the following program on GCC compiler?
#include
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;
}