fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("%f\n", 100000000000000.0f);
  5. printf("%f\n", 100000000000000.0f + 1.0f);
  6. printf("%f\n", 100000000000000.0 + 1.0 );
  7.  
  8. // your code goes here
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
100000000376832.000000
100000000376832.000000
100000000000001.000000