Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,987 questions

51,931 answers

573 users

How to reverse all the bits in an integer in C

1 Answer

0 votes
#include <stdio.h>

void print_bits(unsigned int n) { 
    for (int i = 31; i >= 0; i--)
       printf("%d", (n >> i) & 1);
    printf("\n");
}

unsigned int reverse_bits(unsigned int n) { 
    unsigned int total_bits = sizeof(n) * 8; 
    unsigned int reverse_n = 0; 
    
    for (int i = 0; i < total_bits; i++) { 
        if((n & (1 << i))) 
           reverse_n |= 1 << ((total_bits - 1) - i);   
   } 
    return reverse_n; 
} 


int main() {
    int n = 13;
   
    print_bits(n);
    
    n = reverse_bits(n);
    
    print_bits(n);

    return 0;
}



/*
run:

00000000000000000000000000001101
10110000000000000000000000000000

*/

 



answered Dec 28, 2020 by avibootz

Related questions

2 answers 170 views
1 answer 92 views
1 answer 113 views
1 answer 161 views
161 views asked Aug 10, 2021 by avibootz
1 answer 108 views
1 answer 124 views
...