Isn't that obvious? If you can transform a float to bytes like this:
memcpy( bytez, &f, sizeof(f) );
Then you can do the opposite thing like this:
memcpy( &f, bytez, sizeof(f) );
wink