Quote:
Originally Posted by Dores
That's simple stuff - I understood nearly 1% of it easily!
|
XOR = Toggle each bit if the correspondent bit of both the operands are different.
Example (number represented as bits)
111 XOR 111 = 000 (all bits equal)
000 XOR 111 = 111 (all bits different)
001 XOR 000 = 001 (only last bit different)
__________________