Create a union containing a 32-bit integer and a float.
The int and float are now just different ways of looking at the same bit of memory;


union {
int myInt;
float myFloat;
}...