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
What is the stack in c?
Explain what is the difference between the expression '++a' and 'a++'?
Why should I use standard library functions instead of writing my own?
What are valid signatures for the Main function?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How can I convert a number to a string?
What are global variables?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
How is a structure member accessed?
Difference between exit() and _exit() function?
Where can I get an ansi-compatible lint?
Write a program in c to replace any vowel in a string with z?
What is uint8 in c?
Is void a keyword in c?
What do you mean by invalid pointer arithmetic?