Q:

Predict the output of below code:

0

Predict the output of below code:

 #include <stdio.h>
    int main()
    {
        int ary[2][3][4], j = 20;
        ary[0][0] = &j;
        printf("%d\n", *ary[0][0]);
    }

  1. Junk Value
  2. No output
  3. Compile time Error
  4. Address of j

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

Compile time Error

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Predict the output of below code:... >>
<< applications of a multidimensional array...