Basic - Bitwise right shift

Bit shift to the right as many time shifts the input number to the right as many as the value of the second input. output bits will be lost and the input bits will be 0. bit shift to the right can be used to divide the power of 2. example 256 divided by 2 on the third: 256 we shift to the right three times and the result is 32.

You can find it in the following collections: bitwise operators