“Imprimer le binaire en c” Réponses codées

Imprimer le binaire C

// Note that u can change this function to print int values
// by changing the type and the sizeof 
void print_bin(unsigned char value)
{
    for (int i = sizeof(char) * 7; i >= 0; i--)
        printf("%d", (value & (1 << i)) >> i );
    putc('\n', stdout);
}
Yasha

Imprimer le binaire en c

void print_bin(unsigned char value)
{
    for (int i = sizeof(char) * 7; i >= 0; i--)
        printf("%d", (value & (1 << i)) >> i );
    putc('\n', stdout);
}
SIVASANJEEV R

Imprimer le binaire C

// Note that u can change this function to print int values
// by changing the type and the sizeof
void print_bin(unsigned char value)
{
    for (int i = sizeof(char) * 8; i != -1; i--)
        printf("%d", (value & (1 << i)) >> i );
    putc('\n', stdout);
}

Réponses similaires à “Imprimer le binaire en c”

Questions similaires à “Imprimer le binaire en c”

Plus de réponses similaires à “Imprimer le binaire en c” dans C

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code