fork(4) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float a = 7.52321311545f;
  5. printf("%0.30f\n%0.30f\n%0.30f\n", a, a/2.0f, a * 0.5f);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
7.523212909698486328125000000000
3.761606454849243164062500000000
3.761606454849243164062500000000