Problems refer to the following statements:
int sum, k, i, j;
int x[4][4] = {{1,2,3,4}, {5,6,7,8}, {9,8,7,3}, {2,1,7,1}};Give the value in sum after the following statements are executed.
sum = x[0][0];
for(int k=1; k<=3; ++k)
sum += x[k][k];
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.