C Programming
What will be the output of the program ?#includevoid main(){ int a[5] = {5, 1, 15, 20, 25}; int i, j, m; i = ++a[1]; j = a[1]++; m = a[i++]; printf("%d, %d, %d", i, j, m);}

2, 1, 15
3, 2, 15
1, 2, 5
2, 3, 20

ANSWER DOWNLOAD EXAMIANS APP