fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float x = (float)0x7FFFFFFF;
  5. printf("%f\n", x);
  6. printf("%f\n", x + 1);
  7. // your code goes here
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
2147483648.000000
2147483649.000000