fork download
  1. #include <stdio.h>
  2. int my_func(void)
  3. {
  4. /* float f = 0.0; */
  5. return(0.0 ? 1 : 0);
  6. }
  7. int main(void)
  8. {
  9. printf("%s\n", ( my_func() ? "ONE" : "NIL") );
  10. return 0;
  11. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
NIL