#include int main(){ int x = 53; /* * x 0011 0101 * shifted by 1 to the left: * 01101010 * shifted by 1 to the right: * 00011010 */ printf("x shifted left is %d\n", x << 1); printf("x shifted right is %d\n", x >> 1); printf("x with the 1's place set to 0: %d\n", (x >> 1) << 1); return 0; }