Comment on Fast Inverse Square RootparentComments−raverbashing13yI suppose this is saying something like thisunion X{ char a; float b; }If you store something in a, the other 3 bytes corresponding to b are unspecifiedBut I suspect this doesn't apply if a and b have the same size.
Comments
I suppose this is saying something like this
union X{ char a; float b; }
If you store something in a, the other 3 bytes corresponding to b are unspecified
But I suspect this doesn't apply if a and b have the same size.