Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Monday, March 16, 2015

What is bitwise shift operator?

The bitwise shift operator is used to shift (move) bits i.e. it moves data bits right or left and the position of shifted (moved) bits will be filled by 0s (zero’s).

In bitwise shift operator we decide how many bits to be shifted by the operator. There are two types of bitwise shift operator:
  1. Right shift operator (>>)
  2. Left shift operator (<<)

No comments:

Post a Comment