If m is a 7 ? 7 integer matrix, what is displayed by this code fragment?
```
for ( int i = 0; i < 7; ++i )
cout << m[3][i];
cout << endl;
```
a. The first three rows of m.
b. The first three columns of m.
c. The middle row of m.
d. The middle column of m.
c. The middle row of m.
Computer Science & Information Technology
You might also like to view...
Which of the following is not part of an EIGRP entry in the routing table?
a. Directly connected b. D c. 90 d. via
Computer Science & Information Technology
To arrange the records in descending order, you must ____.
A. cut and paste B. edit C. filter D. sort
Computer Science & Information Technology