BitXOR-func
This function is used to return bitwise XOR operation of two intergers.
int BitXOR(int a, int b)
a
b
Return the result by bitwise XOR operation of the input intergers.
aa = BitXOR(1,7); aa =; //Returns the result of an XOR operation.
BitOR, BitAND