``` printf("(%10g)\n", 100000.0f); // --> (100000) printf("(%10g)\n", 100001.0f); // --> ( 100001) printf("(%10g)\n", 99999.0f); // --> ( 99999) ``` The first line should output: `( 100000)` instead. Tested on version 2.3.0 and 2.4.0, same result.