fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float a;
  5. float b;
  6. a = 6.0;
  7. b = 5.6;
  8. printf("%.20f\n", a - b);
  9. a = 2.3;
  10. b = 1.9;
  11. printf("%.20f\n", a - b);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5436KB
stdin
Standard input is empty
stdout
0.40000009536743164062
0.39999997615814208984