What does the suffix #DEN mean on the value of a variable

39,739

Solution 1

This is for "denormalized number".

Solution 2

Denormalized; too small (close to zero) to be represented as a number in the form 1.M * 2^E

Share:
39,739
davetapley
Author by

davetapley

Writer of code.

Updated on September 24, 2020

Comments

  • davetapley
    davetapley over 3 years

    When debugging in VS2005 I have a float in the Locals window whose values is: 1.744e-039#DEN

    What does the #DEN signify/stand for?

  • bobobobo
    bobobobo about 12 years
    Is this bad or not really? What are the risks of when a variable starts taking on a #den value in your code?
  • jxramos
    jxramos over 9 years
    @bobobobo, I have the same question. I wound up triggering #DEN with the following code -std::numeric_limits<double>::max() I wound up replacing it with std::numeric_limits<double>::lowest()