How do you swap two variables using bitwise operators?

Answer:
a := a XOR b
b := a XOR b
a := a XOR b

it works, but never use it in real programs
First answer by NevemTeve. Last edit by NevemTeve. Contributor trust: 172 Question popularity: 0 [recommend question].