How can I deny a number floating point without utilizat some mathematical operation? How can I take the first 8 bits of the number floating point, those but significant (MSB) or the bit but significant of the number type floating point?
Does "Deny" = "Negate"? Here is a fast negator.
*((BYTE*)&TheFloat) ^= 0x80;