unsigned int a = 60; // 60 = 0011 1100 unsigned int b = 13; // 13 = 0000 1101 a &= b; // 12 = 0000 1100
expression1 &= expression2