Write a program to shift inputted data by two bits right.
The program takes an integer input from the user, then uses the right shift operator (>>) to shift the value of the inputted integer by two bits to the right. The result is stored in the integer variable y. Finally, the shifted value is printed on the screen. The right shift operator shifts the bits […]