fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float x=1.1f;
  5. printf("%.17f\n",x);
  6. while(1.0009<x && x<1.10001)
  7. {
  8. printf("%f \n",x);
  9. x=x-0.1;
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
1.10000002384185791
1.100000