Q. 33
Consider the following declaration of a two dimensional array in C:
char a[100][100]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 :
(A) 4040
(B) 4050
(C) 5040
(D) 5050
Answer: (B)
Explanation: