Top

Discussion

Predict the output of below code:

#include

int main()
{
    int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0};
    printf("%u, %u\n", a+1, &a+1);
    return 0;
}

 

  • A.65430, 43569
  • B.65239, 64763
  • C.65480, 65496
  • D.61123, 74123

Answer: C

No answer description available for this question.

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

Post your comment