9 lines
132 B
C
9 lines
132 B
C
|
#include <math.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void main( void )
|
||
|
{
|
||
|
printf( "NAN %s a NaN\n",
|
||
|
isnan( NAN ) ? "is" : "is not" );
|
||
|
}
|