Home » C Programming » Pointers » Question
  1. Which is true for num, if num is defined as “int num[12][23];”?
    1. The conventional rectangular subscript calculation 20 * row + col is used to find the element num[row, col].
    2. num is true two-dimensional array
    3. 200 int-sized locations have been set aside
    4. All of above
    5. 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.



Your comments will be displayed only after manual approval.