Say I have four 32-bit numbers, defined so that their bits don\'t overlap, i.e.
unsigned long int num0 = 0xFF000000; unsigned long int num1 = 0x00FF0000; uns
Addition and bit-wise or would be the same as bit-wise or would include any bits in either, and normal addition would do exactly the same given the mutually exclusive nature of your bits.