fminl Function

Returns the value of the smaller argument.

Include

<math.h>

Prototype

long double fminl(long double x, long double y);

Arguments

x
any double precision floating-point number
y
any double precision floating-point number

Return Value

Returns the value of the smaller argument.

Example

#include <math.h>
#include <stdio.h>

int main(void)
{
  long double x, y, z;

  x = -5.7;
  y = 2.0;
  z = fminl(x, y);
  printf("The smaller of %Lf and %Lf is %Lf\n", x, y, z);
}

Example Output

The larger of -5.700000 and 2.000000 is -5.700000