double fmax (double x , double y); float fmaxf (float x , float y);long double fmaxl (long double x, long double y);
double fmax (double x , double y); float fmax (float x , float y);long double fmax (long double x, long double y); double fmax (Type1 x , Type2 y); // additional overloads
|
|
fmax (100.0, 1.0) = 100.000000 fmax (-100.0, 1.0) = 1.000000 fmax (-100.0,-1.0) = -1.000000 |