Mega Code Archive

 
Categories / C Tutorial / Math h
 

Fmin

Item Value 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));   }