Q196
What will be the output of the following C code? #include int main() int ary[2][3][4], j = 20; ary[0][0] = &j; printf("%d ", *ary[0][0]);
A.
Compile time error
AnswerB.
20
C.
Address of j
D.
Undefined behaviour
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board