Top

Discussion

Predict the output of below code: 

#include

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

 

  • A.Output : 1
  • B.Output : 10
  • C.Output : 6
  • D.Output : 8

Answer: B

No answer description available for this question.

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

Post your comment