GATE Computer Science (CS) 2015 Shift 1 Solved Paper

© examsiri.com
Question : 62 of 65
 
Marks: +1, -0
What is the output of the following C code? Assume that the address of x is 2000 (in decimal) and an integer requires four bytes of memory.
int main () {
unsigned int x[4][3] =
{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};
printf(“%u, %u, %u”, x + 3, *(x + 3), *(x + 2) + 3);
}

Go to Question: