expression >>
expression
Each expression yields an integer
.
The >>
operator shifts a given value a specified number of bits to the right using sign extension. Missing bits are filled with the value of the most significant bit.
The expression x
is equivalent to >>
y
when x and y are integers. floor
(x/2^y)