That was posted to comp.lang.c 20 years ago or more. It's not something
that the compiler is likely to be able to optimize (unlike the normal
swap, using a temporary variable.)
Another cute, temp-free swap, from the same era, is: b += a -= b; a = b - a.
--