fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float a = 1.0f / 0.0f;
  6. float b = a, c = a, d = a;
  7. printf("%s", ! ( (a >= b) && (c <= d) ) || ( (a-c) >= (b-d) ) ? "true" : "false");
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
false