In article <b3c69a72-5f0c-4e2a-8ef0-91842e12c...@googlegroups.com>,
 Rustom Mody <rustompm...@gmail.com> wrote:

> A C programmer asked to swap variables x and y, typically writes something 
> like
> 
> t = x; x = y; y = t;
> 
> Fine, since C cant do better.

Sure C can do better.

x = x ^ y
y = y ^ x
x = x ^ y

Any self-respecting C hacker would write it this way :-)
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to