Forgot your password?
typodupeerror

Comment Re:Nice (Score 1) 485

C does not allow accessing an object of type float via an lvalue of type int. You need to either use a union (still invalid, but supported by most compilers) or memcpy. In fact this code will not work with gcc 4.1, which has improved aliasing analysis.

Slashdot Top Deals

"I've seen the forgeries I've sent out." -- John F. Haugh II (jfh@rpp386.Dallas.TX.US), about forging net news articles

Working...