How we can set and clear bit in a byte using macro function?
Answers were Sorted based on User's Feedback
#define SETBIT(num,bitpos) (num|(1<<bitpos))
#define CLRBIT(num,bitpos) (num&(~(1<<bitpos)))
int a = 0x03; // a = 00000011b = 0x03(3)
SETBIT(a, 3); // a = 00001011b [3rd bit set] = 0x0b(11)
int b = 0x25; // b = 00100101b = 0x25(37)
CLRBIT(b, 2); // b = 00100001b [2nd bit clear] = 0x21(33)
| Is This Answer Correct ? | 27 Yes | 1 No |
Answer / sunitha
take i=5;
print its binary value
now for setting a bit
i=i>>5|1;
this will set 5th bit in binary value of 5
now for clearing a bit
i=i>>5 xor 1
this will clear 5th bit in binary value of 5
| Is This Answer Correct ? | 6 Yes | 3 No |
Can you tell me how to check whether a linked list is circular?
What is undefined behavior?
What are actual arguments?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Do you know the difference between exit() and _exit() function in c?
How can I find out if there are characters available for reading?
Differentiate between a structure and a union.
how to connect oracle in C/C++.
What is the full form of getch?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Differentiate between calloc and malloc.
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4