fmax

From cppreference.com
< c‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C99)
(C99)
(C99)
fmax
(C99)
(C99)
(C99)
(C99)(C99)(C99)
Exponential functions
(C99)
(C99)
(C99)
(C99)
Power functions
(C99)
(C99)
Trigonometric and hyperbolic functions
(C99)
(C99)
(C99)
Error and gamma functions
(C99)
(C99)
(C99)
(C99)
Nearest integer floating point operations
(C99)(C99)(C99)
(C99)
(C99)
(C99)(C99)(C99)
Floating point manipulation functions
(C99)(C99)
(C99)
(C99)
Classification
(C99)
(C99)
(C99)
(C99)
(C99)
(C99)
Macro constants
 
Defined in header <math.h>
float       fmaxf( float x, float y );
(since C99)
double      fmax( double x, double y );
(since C99)
long double fmaxl( long double x, long double y );
(since C99)

Returns the larger of two floating point arguments.

[edit] Parameters

x, y - floating point values

[edit] Return value

The larger of two floating point values.

[edit] See also

(C99)
smaller of two floating point values
(function)