fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float x = 1.0;
  5. float y,z;
  6. y = z = 1.19209E-07;
  7. printf("x+(y+z)=%G\t%.20f\n",x+(y+z));
  8. printf("(x+y)+z=%G\t%.20f\n",(x+y)+z);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4504KB
stdin
Standard input is empty
stdout
x+(y+z)=1	0.00000000000000000000
(x+y)+z=1	0.00000000000000000000