What will be the output of the program?
#include int main() { printf("%d %d\n", 32<<1>>1, 32>>0); printf("%d %d\n", 32>>-1, 32>>-0); return 0; }
Answer: B
No answer description available for this question.