Saved Bookmarks
| 1. |
You have used a 2D array with the Name Mat representing a matrix. Write the C++ expression to access the 3rd element in the 2nd row. |
|
Answer» Answer is mat[1] [2]; |
|