fork download
  1. #include <stdbool.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. printf("%d\n", (int)(_Bool)1024);
  7.  
  8. printf("%s\n",
  9. (_Bool)1024 == true ? "okay" : "oops..."
  10. );
  11. }
  12.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
1
okay