Predict the output of below code:
#include int main() { int ary[2][3][4], j = 20; ary[0][0] = &j; printf("%d\n", *ary[0][0]); }
Answer: C
No answer description available for this question.