Solved

After the Following Statements Execute,what Are the Contents of Matrix

Question 47

Multiple Choice

After the following statements execute,what are the contents of matrix?
int matrix[3][2];
Int j,k;
For (j = 0; j < 3; j++)
For (k = 0; k < 2; k++)
Matrix[j][k] = j + k;


A)
0 0
1 1
2 2

B)
0 1
2 3
4 5

C)
0 1
1 2
2 3

D)
1 1
2 2
3 3

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions