How I could find max two decimal precision vale that can be stored in float ?
From my understanding, In 32 bit float we have 24(23+1) for storing the number excluding ex
If you simply want to store numbers with exactly two decimal digits after the point, store 100 times the number as an integer (or long, depending on how big your numbers get), and add the point (or comma) on formatting (remove on parsing).
This is much easier to control.