The bitwise operator in C/C++ that shifts bits to the right. Shifting the bits of an integer to the right is equivalent to dividing by powers of two. For example:

x >> y == x / 2y

Note that this does not happen if the integer is signed.