Top

Discussion

What will be the output of the following C code?

#include 
    int main()
    {
        int a = 2;
        if (a >> 1)
           printf("%d\n", a);
    }

 

  • A.1
  • B.2
  • C.No Output

Answer: C

No answer description available for this question.

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

Post your comment