Cara mengatur bit di nomor float di c

int32_t i = 0x7FC00000;
float f;
memcpy(&f, &i, sizeof(f));
Frightened Fly