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

C++Visual StudioDebuggingVisual Studio-2005

C++ Problem Overview


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?

C++ Solutions


Solution 1 - C++

This is for "denormalized number".

Solution 2 - C++

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

Solution 3 - C++

Denormal - too close to zero - see http://en.wikipedia.org/wiki/Denormal

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondavetapleyView Question on Stackoverflow
Solution 1 - C++Anton GogolevView Answer on Stackoverflow
Solution 2 - C++MSaltersView Answer on Stackoverflow
Solution 3 - C++anonView Answer on Stackoverflow