& Bitwise AND
In this section:
Precedence
9
Description
& or BINANDor BITAND performs bitwise AND between the integer operands. Each bit in the 32-bit result is the logical AND of the corresponding bits in the operands.
Example
1010B & 0011B –> 0010B 1010B & 0101B –> 0000B 1010B & 0000B –> 0000B