fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. float f = 1e11;
  5. printf("%f\n", f);
  6. ++f;
  7. printf("%f\n", f);
  8. f+=10000;
  9. printf("%f\n", f);
  10. }
  11.  
Runtime error #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
99999997952.000000
99999997952.000000
100000006144.000000