How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
Answer Posted / asdf
#define TURN_OFF_BIT_LAST(x) ((~0) << 1) & x)
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Why c is known as a mother language?
Explain what does the function toupper() do?
Explain how does flowchart help in writing a program?
Explain continue keyword in c
What are the features of the c language?
What are different types of operators?
Do pointers store the address of value or the actual value of a variable?
What is the difference between near, far and huge pointers?
How do you initialize pointer variables?
What is meant by int main ()?
How can you invoke another program from within a C program?
How many levels deep can include files be nested?
What is the method to save data in stack data structure type?
What is #ifdef ? What is its application?