Thursday, March 28, 2024 13:02

Posts Tagged ‘double variable’

Real types error calculations

Thursday, December 29th, 2016

In calculations with real floating-point data types it is possible to observe strange behavior, because during the representation of a given real number it often happens to lose accuracy. The reason for this is the inability of some real numbers to be represented exactly as a sum of negative powers of the number 2.… Read more

Double variable type

Tuesday, December 27th, 2016

C# compiler allocates 64 bits (8 bytes) to store a double variable type. For reference, a double variable type can keep values with a precision of 14 or 15 digits, in the interval between 1.7E-308 and 1.7E+308.

You should know that the float and the double variable types are floating binary point types.… Read more


Follow the white rabbit