6 lines
77 B
C
6 lines
77 B
C
typedef union {
|
|
int i;
|
|
float f;
|
|
} fu;
|
|
const fu NAN = { 0x7f810000 };
|