Top

Discussion

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: C

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment