0
Which bit wise operator is suitable for putting on a particular bit in a number ?
Answer:
The bitwise OR operator. In the following code snippet, the bit number 24 is turned ON:
some_int = some_int | KBit24;
The bitwise OR operator. In the following code snippet, the bit number 24 is turned ON:
some_int = some_int | KBit24;
Post a Comment