fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. const int x = 37;
  6. const int y = ~x + 1;
  7.  
  8. printf("%d or %u?\n", y, y & 255);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
-37 or 219?