BitOR

Description

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


Syntax

 int BitOR(int a, int b)

Parameters

a

Any allowed interger.

b

Any allowed interger.

Return

Return the result of two input numbers by bitwise OR operation.

Example

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

See Also

BitAND, BitXOR