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

Viewed 41629

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?

3 Answers

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

Related