/******************************************************************************
Welcome to GDB Online.2
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
unsigned int right_shift_val = (0x20);
printf("right shift 0xFC0 [by 0x%x], method #1: 0x%x \n", right_shift_val, 0xFC0 >> right_shift_val);
printf("right shift 0xFC0 [by 0x20], method #2: 0x%x \n", 0xFC0 >> 0x20);
return 0;
}