BitXOR-func
This function is used to return bitwise XOR operation of two intergers.
__int64 BitXOR( __int64 a, __int64 b )
a
b
Return the result by bitwise XOR operation of the input intergers.
EX1
aa = BitXOR(1,7); aa =; //Returns the result of an XOR operation.
EX2
i=hex(F1101010101); j=hex(F2010101011); Dec2hex(bitXor(i,j),12)$=; // 003111111110
BitOR, BitAND