Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

fmin, fminf, fminl - determine minimum numeric value

&pagelevel(4)&pagelevel

Syntax

#include <math.h>

C11
double fmin(double x, double y);
float fminf(float x, float y);
long double fminl(long double x, long double y); (End)

Description

These functions determine the minimum numeric value of  x and y.

Return val.

x                    if x < y

y                    if x >= y

See also

fmax(), fdim(), math.h.