GeeksforGeeks Solution For Hard Domain .Below You Can Find The Solution Of School Basic ,Easy ,Medium . Or Hackerrank Solution You Can Also Direct Submit Your Solution to Geeksforgeeks Same Problem .You Need to login then you can submit you answers
Problem :- Swap all odd and even bits
Submit Your Solution :- Click Here
Solution :-
#include <stdio.h>
unsigned int swapBits(int x)
{
int even_bits = x & 0xAAAAAAAA;
int odd_bits = x & 0x55555555;
even_bits >>= 1;
odd_bits <<= 1;
return (even_bits | odd_bits);
}
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int x;
scanf("%d",&x);
printf("%d\n", swapBits(x));
}
return 0;
}
Output:-
0 Comments: