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