fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float current = 0.0f;
  5.  
  6. for (float old = -1.f; old != current; old = current, current += 0.001f)
  7. ;
  8. printf("%f\n", current);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.18s 2156KB
stdin
Standard input is empty
stdout
32768.000000