Load the exponent of a radix-independent floating point number
#include <math.h>
double scalbn ( double x,
                int n );
float scalbnf ( float x,
                int n );
The scalbn() and scalbnf() functions compute x × rn, where r is the radix of the machine's floating point arithmetic.
x × rn
When a correct value would cause an underflow, these functions return 0.0.
#include <stdio.h>
#include <errno.h>
#include <inttypes.h>
#include <math.h>
#include <fpstatus.h>
int main(int argc, char** argv) 
{
    double a, b, c, d;
    a = 10;
    b = 2;
    c = scalbn(a, b);
    d = sqrt(c/a);
    printf("Radix of machines fp arithmetic is %f \n", d);
    printf("So %f = %f * (%f ^ %f) \n", c, a, d, b);
    return(0);
}
produces the output:
Radix of machines fp arithmetic is 2.000000 So 40.000000 = 10.000000 * (2.000000 ^ 2.000000)
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | No | 
| Signal handler | No | 
| Thread | Yes |