i have some code and it checking chechsum by XOR on 5 first numbers, and it should be equal to the sixth number. But, what is the difference between
if (n0^n1^n2^n3^n4==n5) return true;
else return false;
and
if ((n0^n1^n2^n3^n4)==n5) return true;
else return false;
?
Because the first one is working and the second one is not.