Logo

Programming-Idioms

  • Python
  • Fortran

Idiom #237 Xor integers

Assign to c the result of (a xor b)

c = ieor(a,b)
c = a ^ b
int c = a ^ b;

New implementation...
< >
programming-idioms.org