3.5.10.3 BitXOR

Description

This function is used to return bitwise XOR operation of two intergers.


Syntax

 __int64 BitXOR( __int64 a, __int64 b )

Parameters

a

Any allowed interger.

b

Any allowed interger.

Return

Return the result by bitwise XOR operation of the input intergers.

Example

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

See Also

BitOR, BitAND