-
Following declaration of a two-dimensional array in C.
Char a [100] [100];
Assuming that the main memory is byte addressable and that the array is stored starting from memory address 0, the address of a [40] [50] is
-
- 4040
- 4050
- 5040
- 5050
- 4040
Correct Option: B
Given is a [40] [50].
In a [40] [50],
Row = 40
Column = 50
The address is 4050.