Q:

Predict the output of below code:

0

Predict the output of below code:

#include<stdio.h>

int main()
{
    int arr[1]={10};
    printf("%d\n", 0[arr]);
    return 0;
}

  1. Output : 1
  2. Output : 10
  3. Output : 6
  4. Output : 8

All Answers

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

Correct Answer:

Output : 10

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:... >>
<< Choose the correct statements...