What will be the output of the following program on GCC compiler?

Loading

โœช 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++;
}
}

A. 10,20,30,40,50,
B. 10,10,10,10,10,
C. 50,50,50,50,50,
D. Compiler error