C言語ホーム
>
その他、C言語の詳細について
>
標準ライブラリ一覧(ヘッダ毎)
|
標準ライブラリ一覧(アルファベット順)
> nexttoward
サイト内検索:
nexttoward
C言語の標準ライブラリnexttowardのリファレンスです。
nexttoward
<nexttoward>
概要
2点を除いてnextafterと同じ。
ヘッダ
#include <math.h>
I/F
double nexttoward(double x, long double y);
戻り値
yの方向にあるxの次の値。
詳細
nexttoward関数は、yの型がlongdoubleであること、xとyが同じならyをdouble型に変換して返却することを除いて、nextafter関数と同じである。