Question: Write one or more C statements that clears (i.e. sets to 0) bits 11 and 12 of the variable x without disturbing the other bits
Write one or more C statements that clears (i.e. sets to 0) bits 11 and 12 of the variable "x" without disturbing the other bits using bit-level C operators. The variable mask, declared below, may be helpful.
int mask = 0x00001800; int x = arbitrary_value;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
