-
Which is true for num, if num is defined as “int num[12][23];”?
-
- The conventional rectangular subscript calculation 20 * row + col is used to find the element num[row, col].
- num is true two-dimensional array
- 200 int-sized locations have been set aside
- All of above
- None of these
Correct Option: D
*The conventional rectangular subscript calculation 20 * row +
col is used to find the element num[row, col].
*num is true two-dimensional array.
*200 int-sized locations have been set aside.