โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
void main(){
int arr[]={10,20,30,40,50};
int i, *k;
k = &arr[4]-4;
for(i=0; i<=4; i++){
printf("%d,",*k);
k++;
}
}