show/hide this revision's text 4 added 28 characters in body

There is no direct way (i.e. using printf or another standard library function) to print it. You will have to write your own function.

/* This code has an obvious bug and another non-obvious one :) */
void printbits(unsigned char v) {
   for (; v; v >>= 1) putchar('0' + (v & 1));
}
show/hide this revision's text 3 added 38 characters in body

There is no direct way (i.e. using printf or another standard library function) to print it. You will have to write your own function.

/* This code has an obvious bug :) */
void printbits(unsigned char v) {
   for (; v; v >>= 1) putchar('0' + (v & 1));
}
show/hide this revision's text 2 added 118 characters in body

There is no direct way (i.e. using printf or another standard library function) to print it. You will have to write your own function.

void printbits(unsigned char v) {
   for (; v; v >>= 1) putchar('0' + (v & 1));
}
show/hide this revision's text 1