vote up 0 vote down star

How do I initialize number with NaN in Borland C++?

duplicate: Using NaN in C++?

flag

1 Answer

vote up 4 vote down check

You can look at std::numeric_limits<double>::quiet_NaN(). Include <limits>.

link|flag
In the documentation they say "The quiet NaN for type int is: 0"... how can I discriminate between NaN and real 0? – luvieere Oct 5 at 13:45
NaN is only applicable for floating point types. – Bill Oct 5 at 13:50
1  
@luvieere. Check std::numeric_limits<int>::has_quiet_NaN; You will find it is false. while std::numeric_limits<double>::has_quiet_NaN is true – Martin York Oct 5 at 16:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.