Table of Contents
show
Bitwise operators operate on the individual bits of the operand
- Bitwise operators can be applied only on char, int, long, short,signed and unsigned
- Left shift by n bits is equivalent to multiplication by 2^n
- Right shift by n bits is equivalent to division by 2^n
The list of bitwise operators are given as,
The truth table are given as
AND Operator
OR Operator
NOT Operator
XOR Operator
Operands
Views: 0