Q:

Predict the output of below code:

0

Predict the output of below code:

#include<stdio.h>

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

  1. 65430, 43569
  2. 65239, 64763
  3. 65480, 65496
  4. 61123, 74123

All Answers

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

Correct Answer:

65480, 65496

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

total answers (1)

Are the expressions arr and &arr same for an array... >>
<< If n has the value 3, then the statement...