How to check whether value is set or not
if (A) Indicator |= 0x10;
if (B) Indicator |= 0x04;
if(Indicator ) ??
Here inside if I want to check whether Indicator have value 0x10
or not, Some case Indicator wil have value 0x10
and 0x04
. I need to check 0x10
is ther eor not