exp

 

書式
double exp(double x);

機能
指数関数を求める。

戻り値
ネピア数のx乗。

ヘッダーファイル
math.h

 

使用例

double a,b;
a = 1.23;
b = exp(a);