Floating point
A floating point is represented within a fixed number of bytes. For eg in .Net,
- System.Single - float - 4 bytes
- System.Double - double - 8 bytes
- System.Decimal - decimal - 16 bytes
A floating point is represented within a fixed number of bytes. For eg in .Net,