So stellen Sie Bit in Float -Nummer in C ein

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