1.

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]); }

A. Junk Value
B. No output
C. Compile time Error
D. Address of j
Answer» D. Address of j


Discussion

No Comment Found