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

    Dec 31, 2021 · I've read about the difference between double precision and single precision. However, in most cases, float and double seem to be interchangeable, i.e. using one or the …

  2. integer - What exactly is a float? - Stack Overflow

    May 9, 2012 · This is the reason why we call them "floating point numbers" - we allow the decimal point to "float" depending on how big the number that we want to write is. Let's give an …

  3. floating point - What range of numbers can be ... - Stack Overflow

    For a given IEEE-754 floating point number X, if 2^E <= abs(X) < 2^(E+1) then the distance from X to the next largest representable floating point number (epsilon) is: epsilon = 2^(E-52) % For …

  4. Should I use double or float? - Stack Overflow

    Jul 2, 2009 · 1 The main difference between float and double is precision. Wikipedia has more info about Single precision (float) and Double precision.

  5. floating point - C: printf a float value - Stack Overflow

    Dec 2, 2011 · I want to print a float value which has 2 integer digits and 6 decimal digits after the comma. If I just use printf("%f", myFloat) I'm getting a truncated value. I don't know if this …

  6. The real difference between float32 and float64 - Stack Overflow

    Jul 30, 2023 · I want to understand the actual difference between float16 and float32 in terms of the result precision. For instance, NumPy allows you to choose the range of the datatype you …

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

    How to use % operator for float values in c Asked 13 years, 9 months ago Modified 7 years, 7 months ago Viewed 72k times

  8. c - What is the difference between float, _Float32, _Float32x, and ...

    Jul 5, 2023 · Usually, float and double are binary32 and binary64 types respectively, and long double is binary128, an x87 80-bit extended floating-point number, or represented same as …

  9. 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 …

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

    Jul 23, 2019 · 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 …

Refresh