& Bitwise AND
In this section:
Precedence
5
The precedence of :AND: is 3.
Description
& or the synonym :AND: 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