Given the definition and code fragment:

```
int matrix[2][3];
int k = 0;
for(int i =0; i < 3; i++)
for (int j=0, j < 4; j++)
matrix[i][j] = k++;
```
The value of matrix[0][0] is
a) 0
b) 1
c) 2
d) 3
e) 4

a) 0

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a vertical line that separates columns of text

Fill in the blank(s) with correct word

Computer Science & Information Technology

________ allows you to share copies of a presentation, ask for feedback, and then merge the copies with the original

Fill in the blank(s) with correct word

Computer Science & Information Technology