What will be the output of the program ?

			  		

Loading

โœช Choose the correct option.

What will be the output of the program ?


int 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);
return 0;
}

A. 42006
B. 38384
C. 42038
D. 43892