#include int main(void) { unsigned int x = 42; x = x >> 1; printf("%d\n",x); x = x << 2; printf("%d\n",x); return 0; }