What is the output of `int x = 10; printf('%d', x >> 1)`?
Question 1
Q1. What is the output of `int x = 10; printf('%d', x >> 1)`?
Answer: 5
Explanation: Right shift operation divides the number by 2. NET computer science MCQs often test this core concept.