fork(1) download
  1. #include <stdbool.h>
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6. bool b = false;
  7.  
  8. printf("%u\n", b);
  9.  
  10. b = 5 > 3;
  11. printf("%u\n", b);
  12.  
  13. b = 0;
  14. printf("%u\n", b);
  15.  
  16. b = -987;
  17. printf("%u\n", b);
  18. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
0
1
0
1