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
What is the use of getchar functions?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is string concatenation in c?
The file stdio.h, what does it contain?
Write a program to swap two numbers without using third variable in c?
Explain goto?
Explain how do you print only part of a string?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is #include stdlib h?
What is character set?
What does double pointer mean in c?
What is a char in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
how to create duplicate link list using C???
What is a program?