explain the bit wise operatorsc language has


Explain the Bit Wise Operators?

C language has distinction of supporting special operators recognized as bit wise operators for manipulation of data at bit level. These operators are used shifting from left to right or for testing the bits. Bitwise operators may perhaps not be applied to float and double.

Bitwise Operators

Logical Operators

(unary) bitwise complement

~

 

Bitwise 'and'

&

Bitwise 'exclusive or'

^

Bitwise 'inclusive or'

|

Shift Operators

Left Shift

<< 

 

Right Shift

>> 

Like other operators bitwise operators have rules of associativity and precedence that determine how expressions involved them are evaluated.

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: explain the bit wise operatorsc language has
Reference No:- TGS0305205

Expected delivery within 24 Hours