Right shift operators are ones with ( >> ) and one without ( >>> ) sign extensions. The left shift operation does not have a sign extension component.
For example, the following expressions are true:
(0x80000000 >> 1) == 0xC0000000 (0x80000000 >>> 1) == 0x40000000
source share