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