✪ Choose the correct option.
What will be the output of the folllowing program on GCC compiler?
#include
int main(){
int a[] = {2,4,6,8,10};
int i;
for(i=0;i<=4;i++){
*(a+i)=a[i] + i[a];
printf("%d,",*(i+a));
}
return 0;
}