What will be the output of the following C code?
#include int main() { int x = -2; x = x >> 1; printf("%d\n", x); }
Answer: B
No answer description available for this question.