Nie elementów liczbą (NAN)
Kompilator Visual C++ obsługuje porównania nie liczba elementów (NAN) w sposób zgodny z interfejsem IEEE.Jeśli x jest NAN i y nie jest NAN:
(x != x) == true
(x == x) == false
(y > x) == false
(y < x) == false
NAN kolejność badań zawsze zwraca wartość FAŁSZ: NAN [<, < =, >, > =] any_number będzie FAŁSZ.
Poniższy kod ilustruje, jak NANs w programie Visual C++ nie można porównać pomyślnie liczby zmiennoprzecinkowe:
#include <math.h>
#include <stdio.h>
#include <float.h>
int main( void ) {
unsigned long nan[2]={0xffffffff, 0x7fffffff};
double g = *( double* )nan;
if ( g <= 3.0 )
printf( "g( %g ) <= 3.0\n", g );
else if ( g > 3.0)
printf( "g( %g ) > 3.0\n", g );
else
printf( "g( %g ) is NaN\n", g );
}