fork download
  1. #include <stdio.h>
  2. #include <float.h>
  3.  
  4. int main(void) {
  5. volatile double c = 0.2;
  6.  
  7. if (abs(c - 0.2) < DBL_EPSILON ){
  8. puts("equals");
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
equals