I use ANSI C89 (not C++), and I want to generate NaN, -Infinity and +Infinity numbers.
Is there any standard way (eg. standard macro)? Or is there any platform and compiler independent way to generate these numbers?
float f = 0.0 / 0.0; // Is f ALWAYS in any platform is NaN?