0
Which bit wise operator is suitable for turning off a particular bit in a number?
Posted by The Blogger
on
9:18 AM
in
c
Answer:
The bitwise AND operator, again. In the following code snippet, the bit number 24 is reset to zero.
some_int = some_int & ~KBit24;
The bitwise AND operator, again. In the following code snippet, the bit number 24 is reset to zero.
some_int = some_int & ~KBit24;
Post a Comment