Get floating-point value from mantissa and exponent
#include <math.h> #include <stdio.h> int main(void) { printf("%f", ldexp(1,2)); return 0; }