About 53 results
Open links in new tab
  1. O que é o float em Python? - Stack Overflow em Português

    Dec 26, 2022 · O tipo float é associado ao valor de um objeto armazenado na memória e tem um formato interno específico que é capaz de representar um valor fracionado. Note que em Python as …

  2. 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 seja muito mais …

  3. Difference between (float *) & *(float*) in C - Stack Overflow

    Jun 4, 2015 · (float*)iptr: Same problem, but it doesn't dereference the (invalid) pointer, and passes a pointer-to- float into printf, instead of a float. But printf expects a float.

  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. Why would you use float over double, or double over long double?

    Feb 6, 2014 · I understand that float has a smaller range than double making it less precise, and from what I understand, long double is even more precise (?). So my question is why would you want to …

  6. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · What are the differences between numeric, float and decimal datatypes and which should be used in which situations? For any kind of financial transaction (e.g. for salary field), which one is …

  7. 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?

  8. 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 want …

  9. c - Что такое (float*)? - Stack Overflow на русском

    Aug 15, 2023 · Функция calloc возвращает указатель типа void * и этот указатель будет основой создания нового объекта типа float *. То-есть на самом деле то-же самый указатель, но на …

  10. How do I parse a string to a float or int? - Stack Overflow

    Dec 19, 2008 · For the reverse, see Convert integer to string in Python and Converting a float to a string without rounding it. Please instead use How can I read inputs as numbers? to close duplicate …