fmin : fmin « math.h « C Tutorial






ItemValue
Header filemath.h
Declarationfloat fminf(float a, float b);
double fmin(double a, double b);
long double fminl(long double a, long double b);
Returnreturns the lesser of a and b.


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

  int main(void)
  {

     printf("%l", fminl (10,12));

  }








19.24.fmin
19.24.1.fmin