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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,111 questions

40,781 answers

573 users

How to left shift bit in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>

int main(void) {
    int n = 3;

    for (int i = 0; i < 5; i++) {
		char bits[17];
        itoa((n << i) ,bits, 2); 
        printf("Left shift by %d: %s | %d\n", i, bits, n << i);
    }

    return 0;
}



/*
run:

Left shift by 0: 11 | 3
Left shift by 1: 110 | 6
Left shift by 2: 1100 | 12
Left shift by 3: 11000 | 24
Left shift by 4: 110000 | 48

*/

 





answered Dec 29, 2020 by avibootz
edited Dec 29, 2020 by avibootz

Related questions

1 answer 67 views
67 views asked Sep 13, 2021 by avibootz
1 answer 112 views
1 answer 43 views
1 answer 74 views
74 views asked Dec 29, 2020 by avibootz
1 answer 30 views
...