fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. signed char b = -34;
  5. printf("%d%d%d%d%d%d%d%d\n", !!(b&0x80), !!(b&0x40), !!(b&0x20), !!(b&0x10), !!(b&0x08), !!(b&0x04), !!(b&0x02), !!(b&0x01));
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
11011110