unsigned int a = 60; // 60 = 0011 1100 unsigned int b = 13; // 13 = 0000 1101 a |= b; // 61 = 0011 1101
expression1 |= expression2