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.

40,023 questions

51,974 answers

573 users

How to convert a char to binary in C

4 Answers

0 votes
#include <stdio.h>
 
int main(void)
{
    char ch = 'a';
    int i;
     
    for (i = 7; i >= 0; i--)
        printf("%i", (ch >> i) & 1);
        
    return 0;
}
 
/*
 
run:
 
01100001

*/


answered Nov 2, 2014 by avibootz
edited Nov 2, 2014 by avibootz
0 votes
#include <stdio.h>
 
int main(void)
{
    char ch = 'a';
    int i, bits[8];
    
    for (i = 0; i < 8; i++) 
        bits[i] = (ch >> i) & 1;
        
    for (i = 7; i >= 0; i--) 
        printf("%d", bits[i]);
    
    return 0;
}
 
/*
 
run:
 
01100001

*/


answered Nov 2, 2014 by avibootz
edited Nov 2, 2014 by avibootz
0 votes
#include <stdio.h>
 
int main(void)
{
    char ch = 'a';
    int i;
        
    for (i = 7; i >= 0; i--)
        putchar( (ch & (1 << i)) ? '1' : '0' );
        
    return 0;
}
 
/*
 
run:
 
01100001

*/ 


answered Nov 2, 2014 by avibootz
0 votes
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    char ch = 'a', bits[9];
        
    // char*  itoa(int value, char * str, int base);
    itoa(ch, bits, 2);
    printf("%s", bits);
        
    return 0;
}
 
/*
 
run:
 
1100001

*/


answered Nov 2, 2014 by avibootz

Related questions

3 answers 85 views
85 views asked Mar 5, 2025 by avibootz
1 answer 91 views
91 views asked Feb 8, 2024 by avibootz
1 answer 120 views
1 answer 165 views
...