Its is unclear whether you're looking for a string representation, mathematical transformation, or a tool to extract the components of a float:
To get a string representation, coerce to a double and call ftoa()?
float f = 3.14159;
printf("%s\n", ftoa((double) f)));
To extract the parts of the representation, coerce to a double, and then use frexp().
To manipulate in mathematically, using bit-shifts and and-masks to extract the three components (sign, exponent offset by 127, and the mantissa):
raw = 0x43ab9567;
sign = raw >> 31; // 0
mantissa = (raw & 0x7FFFFF) | 0x800000; // 11244903
exp = ((raw >> 23) & 0xFF) - 127 - 23; // -15
result = mantissa * pow(2.0, exp); // 343.1672