Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Tuesday, March 10, 2015

What is bitwise operators ?

The bitwise operators work with bits. The bitwise operator can not be applied on float and double data types. It manipulates the data using bits. The list of bitwise operators is as follows:


Operator
Meaning
>> 
Right shift
<< 
Left shift
&
Bitwise AND
|
Bitwise OR
^
Bitwise Exclusive OR
~
One’s Complement


No comments:

Post a Comment