InterviewSolution
Saved Bookmarks
| 1. |
Given that int x[][]={{2,4,6),{3,5,7}}; What will be the value of x[1][0] and x [0] [2] ? |
|
Answer» The value of x[1][0] is 3 and the Value of x[0][2] is 6. |
|