InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is a two-dimensional array?(a) array array[20][20](b) int array[20][20](c) int array[20, 20](d) char array[20] |
|
Answer» The correct option is (b) int array[20][20] The explanation: Double dimensional arrays are declared in this format. |
|