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