GATE Computer Science (CS) 2014 Shift 2 Solved Paper

© examsiri.com
Question : 44 of 65
 
Marks: +1, -0
For a C program accessing X[i][j][k], the following intermediate code is generated by a
Compiler. Assume that the size of an integer is 32 bits and the size of a character is 8 bits.
t0 = i ∗ 1024
t1 = j ∗ 32
t2 = k ∗ 4
t3 = t1 + t0
t4 = t3 + t2
t5 = X[t4]

Which one of the following statements about the source code for the C program is CORRECT?
Go to Question: