In the header of C++11, there are three new functions for conversion between number and string.
std::string std::to_string(unsigned long long);
std::string std::to_string(long double);
std::string std::to_string(long long);
The first question - why there is only 3 functions? What about simple int or unsigned int, etc.?
The second question - why to_string doesn't throw exception in following code?
long double x = std::numeric_limits<long double>::quiet_NaN();
std::string i = std::to_string( x );
long double c = std::stold( i ); // i = "1.#QNAN"
And the third question - why c equals 1.0 ?
