Top

Discussion

What is the output of this C code?    

void main()
    {
        int x = 0, y = 2, z = 3;
        int a = x & y | z;
        printf("%d", a);
    }

 

  • A.3
  • B.2
  • C.Run time error

Answer: A

No answer description available for this question.

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

Post your comment