fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float x = 16777216;
  5. printf("%f\n%f\n", x, x + 1.0f);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
16777216.000000
16777216.000000