fork(2) download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4.  
  5. int main(void) {
  6. bool b1;
  7. char b2;
  8. uint16_t x1 = 0xFF00;
  9.  
  10. b1 = x1;
  11. b2 = x1;
  12.  
  13. printf(b1 ? "true\n" : "false\n");
  14. printf(b2 ? "true\n" : "false\n");
  15. return 0;
  16. }
Success #stdin #stdout 0s 4448KB
stdin
Standard input is empty
stdout
true
false