

MCQOPTIONS
Saved Bookmarks
1. |
Which of these expressions will make the rightmost set bit zero in an input integer p? |
A. | p = p | (p+1) |
B. | p = p | (p-1) |
C. | p = p & (p+1) |
D. | p = p & (p-1) |
E. | None of these |
Answer» E. None of these | |