How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
Answer Posted / mohit jain
#define TURN_OFF_BIT_LAST(x) ((x) & ~1)
| Is This Answer Correct ? | 27 Yes | 1 No |
Post New Answer View All Answers
How is = symbol different from == symbol in c programming?
What is meant by recursion?
How can I call a function with an argument list built up at run time?
Is it better to use malloc() or calloc()?
What is void c?
What is a method in c?
How pointer is different from array?
Are comments included during the compilation stage and placed in the EXE file as well?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What does calloc stand for?
Explain how do you convert strings to numbers in c?
Add Two Numbers Without Using the Addition Operator
How do I get an accurate error status return from system on ms-dos?
What is context in c?
What does struct node * mean?