当前位置: C语言 -- 标准库 -- <math.h> -- ldexpl

ldexpl函数


概要:
#include <math.h>
long double ldexpl(long double x,int exp);

描述:

该函数计算x×2exp的值。

该函数可能会发生范围错误(range error)


参数:
long double x

参数为一个long double类型的浮点数。

int exp

参数为一个int类型的整数。


返回值:

函数返回x×2exp


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数ldexpl范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    long double x = 5.0L,y;
    int exp = 3;

    y = ldexpl(x,exp);
    printf("ldexpl(%.6Lf,%d) = %.6Lf\n", x,exp,y);

    return 0;
}

输出:

ldexpl(5.000000,3) = 40.000000


相关内容:
ldexp double类型的返回(x×2exp)的函数。
ldexpf float类型的返回(x×2exp)的函数。