Just wondering how you all go about performing a logical XOR in C. At
the moment I'm doing:
!!a != !!b
, which is quicker to write than:
(!a && b) || (a && !b)
If we were to write it as a macro, how would we go about seeking the
shortest execution time?
Martin
Comment