Question 6: What the outputs for i, j, m and n? *can be answered 2 times*
int a[5] = {5, 1, 15, 20, 25}; int i, j, m, n; i = a[2]; j = a[i-i]; m = a[j-2]; n = a[(10%2)];
i = $1
j = $2
m = $3
n = $4