On 2021-06-12 14:45, Pavel M via Cygwin wrote: > Sample code (t903.c): > #include > int main(void) > { > printf("%.43f\n", 0x1.52f8a8e32e982p-140); > return 0; > } > > Invocations: > # gcc on Windows 10 (Cygwin) > $ gcc t903.c -Wall -Wextra -std=c11 -pedantic -Wfatal-errors && ./a.exe > 0.0000000000000000000000000000000000000000010 > > $ gcc --version > gcc (GCC) 11.1.0 > > # gcc on Linux > $ gcc t903.c -Wall -Wextra -std=c11 -pedantic -Wfatal-errors && ./a.exe > 0.0000000000000000000000000000000000000000009 > > # clang on Windows > $ clang t903.c -Wall -Wextra -std=c11 -ffp-model=strict -pedantic > -Wfatal-errors && ./a.exe > 0.0000000000000000000000000000000000000000009 > > # cl on Windows > $ cl t903.c /std:c11 /Za /fp:strict && ./t903.exe > 0.0000000000000000000000000000000000000000009 See newlib mailing list incorrectly rounded square root thread starting: https://sourceware.org/pipermail/newlib/2021/018369.html As suggested lately, I tried adding -frounding-math $ info gcc frounding-math to see if it makes any difference to your test on gcc 10 and got the same result. It may need to be applied to the library functions to have any useful impact. I also tried Cygwin clang and got the same result. It may be an accuracy issue or a bug in the underlying newlib printf conversion. I tried fcvtbuf in the attached test program and found it does the rounding as expected on Cygwin: $ gcc -o test-printf-round{,.c} && ./test-printf-round sgn 0 decpt -42 +0.0000000000000000000000000000000000000000009 0.0000000000000000000000000000000000000000010 -- Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada This email may be disturbing to some readers as it contains too much technical detail. Reader discretion is advised. [Data in binary units and prefixes, physical quantities in SI.]