BitAND

Description

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


Syntax

 int BitAND(int a, int b)

Parameters

a

Any allowed interger.

b

Any allowed interger.

Return

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

Example

aa = BitAND(1,7);
aa =; //returns the result of an AND operation.

See Also

BitOR, BitXOR