“cetak biner c” Kode Jawaban

cetak biner 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

cetak biner 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);
}

Jawaban yang mirip dengan “cetak biner c”

Pertanyaan yang mirip dengan “cetak biner c”

Lebih banyak jawaban terkait untuk “cetak biner c” di C

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya