in Programming in C
302 views
0 votes
0 votes

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;

in Programming in C
302 views

Please log in or register to answer this question.

Related questions