Which is true for a, if a is defined as "int a[10][20];"?
A. a is true two-dimensional array
B. 200 int-sized locations have been set aside
C. The conventional rectangular subscript calculation 20 * row + col is used to find the element a[row, col].
D. All of the mentioned
Answer: Option D
Related Questions on Pointer
In C, what is a pointer primarily used for?
A. Decision making
B. Code organization
C. Variable declaration
D. Storing values
In C, how do you declare a pointer variable that can store the address of an integer?
A. int *ptr;
B. ptr int;
C. int ptr;
D. ptr *int;
What is the purpose of the '->' operator in C when used with pointers?
A. Arithmetic operation
B. Indirection operator
C. Member access operator
D. Bitwise operation

Join The Discussion