About 31,200,000 results
Open links in new tab
  1. What is the difference between float and double? - Stack Overflow

    Mar 5, 2010 · With type float, on the other hand, alarming-looking issues with roundoff crop up all the time. And the thing that's not necessarily different between type float and double is …

  2. How are floating point numbers stored in memory? - Stack Overflow

    Oct 4, 2011 · To understand how they are stored, you must first understand what they are and what kind of values they are intended to handle. Unlike integers, a floating-point value is …

  3. What are the actual min/max values for float and double (C++)

    Feb 6, 2018 · Float's precision allows it to store a value of up to 9 digits (7 real digits, +2 from decimal to binary conversion) Double, like the name suggests can store twice as much …

  4. Ranges of floating point datatype in C? - Stack Overflow

    Apr 11, 2012 · float has 24 significant binary digits - which depending on the number represented translates to 6-8 decimal digits of precision. double has 53 significant binary digits, which is …

  5. How to use % operator for float values in c - Stack Overflow

    Sep 21, 2011 · How to use % operator for float values in c Asked 13 years, 10 months ago Modified 7 years, 8 months ago Viewed 72k times

  6. Difference between decimal, float and double in .NET?

    Mar 6, 2009 · What is the difference between decimal, float and double in .NET? When would someone use one of these?

  7. Why are floating point numbers inaccurate? - Stack Overflow

    Why do some numbers lose accuracy when stored as floating point numbers? For example, the decimal number 9.2 can be expressed exactly as a ratio of two decimal integers (92/10), both …

  8. What is the inclusive range of float and double in Java?

    Nov 5, 2013 · What is the inclusive range of float and double in Java? Why are you not recommended to use float or double for anything where precision is critical?

  9. How many digits can float8, float16, float32, float64, and float128 ...

    Jun 9, 2019 · Numpy's dtype documentation only shows "x bits exponent, y bits mantissa" for each float type, but I couldn't translate that to exactly how many digits …

  10. Qual a forma correta de usar os tipos float, double e decimal?

    Jul 10, 2017 · float e double são mais rápidos, eficientes e econômicos do que os BigDecimal s do Java; não posso afirmar muito sobre o Decimal do C#, mas creio que para multiplicação …