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 the difference between typedef struct and struct?
What is the difference between āgā and āgā in C?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Is there a way to compare two structure variables?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the g value paradox?
Explain modulus operator. What are the restrictions of a modulus operator?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is difference between main and void main?
How can I change their mode to binary?
What are the types of type specifiers?
What is the difference between malloc calloc and realloc in c?
Which is the memory area not included in C program? give the reason
Do you know what are the properties of union in c?
Write a program to know whether the input number is an armstrong number.