You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
610 B
C

/*
* C Program to Reverse all the Bits of an 32-bit Integer using
* Bitwise
*/
#include <stdio.h>
#define NUM_BITS_INT sizeof(int)*8
void main()
{
unsigned int number;
int i = 0, hexadecimal, rev = 0, bit;
printf("enter the hexdecimal value\n");
scanf("0x%number", &hexadecimal);
while (i++ < NUM_BITS_INT)
{
bit = hexadecimal & 1;
hexadecimal = hexadecimal >> 1;
rev = rev ^ bit;
if (i < NUM_BITS_INT)
rev = rev << 1;
}
printf("reverse of hexadecimal value is 0x%number", rev);
}