Is it possible to use an Exclusive or in an if statment? I can't find any refference to it. Since bitwise or is | and Boolean or is || I tried
Code:
if (a ^^ b)
But that gives a syntax error.
It would make sense for this to be part of the c language so I'm guesing there is an obvious anser.