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,924 questions

51,857 answers

573 users

How to rotate left by N bits in C

1 Answer

0 votes
#include <stdio.h>

#define TOTAL_INT_BITS 32

int leftRotate(unsigned num, unsigned total_bits){ 
     return (num << total_bits)|(num >> (TOTAL_INT_BITS - total_bits));
}
 
void print_bits(int n, int size) {
    for (int i = 1 << (size - 1); i > 0; i = i / 2)
        (n & i) ? printf("1") : printf("0");
}
 
int main(void)
{
    unsigned int num = 21791;
    
    print_bits(num, 16);
    
    int N = 3;
    
    num = leftRotate(num, N);
    
    printf("\n");
    
    print_bits(num, 16);
 
    return 0;
}
 
 
 
 
/*
run:
 
0101010100011111
1010100011111000
 
*/

 

 



answered Nov 28, 2023 by avibootz

Related questions

1 answer 154 views
1 answer 97 views
2 answers 145 views
1 answer 165 views
2 answers 192 views
...