BitXOR

Description

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


Syntax

 int BitXOR(int a, int b)

Parameters

a

Any allowed interger.

b

Any allowed interger.

Return

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

Example

aa = BitXOR(1,7);
aa =; //Returns the result of an XOR operation.

See Also

BitOR, BitAND