sin

 

書式
double sin(double x);

機能
サインを求める。

戻り値
サインの値。

ヘッダーファイル
math.h

 

使用例

double a,b;
a = 3.14159265;
b = sin(a);