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 = 0;
for(int i=1; i<=3; ++i)
for(int j=0; j<=3; ++j)
if(x[i][j] > x[i-1][j])
sum++;
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.