I try the following example:
printf("%9.1a",4488.09); //Only one digits has to be printed after digital point
The binary representation of 4488.09 == 1 0001 1000 1000.0001011100001010001111010111000010100011110101 should become 0x1.1p+12or 0x1.2p+12 ?
I cant undrstand if the round operation (while printing) has to be performed for the binary representation or for the 1.18+13 representation?And if it should perform ceil() - the 8 is exactly in the middle of the hexadecimal range...