How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
Answer Posted / dorian
#define TURN_OFF_BIT_LAST(x) ((x >> 1) << 1)
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is dangling pointer in c?
What is 02d in c?
What is the difference between the = symbol and == symbol?
Explain is it better to bitshift a value than to multiply by 2?
write a program fibonacci series and palindrome program in c
What are the uses of null pointers?
What is FIFO?
Differentiate between #include<...> and #include '...'
What is external variable in c?
What is union and structure in c?
What is the best way to store flag values in a program?
Do variables need to be initialized?
State two uses of pointers in C?
How can I call fortran?
How do we make a global variable accessible across files? Explain the extern keyword?