COMPILER DESIGN

ADVANCED TOPICS IN COMPILER DESIGN

CODE GENERATION FOR OBJECT ORIENTED LANGUAGES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What is the index variable for the element at the first row and first column in array a?
A
a[1][1]
B
a[0][1]
C
a[0][0]
D
a[1][0]
Explanation: 

Detailed explanation-1: -The element at the first row and first column in an array a is at the index a[0][0], which is given in option A, thus the correct answer is A, that is, a[0][0].

There is 1 question to complete.