Item Value
Header filemath.h
Declarationfloat fmaxf(float a, float b);double fmax(double a, double b);long double fmaxl(long double a, long double b);
Returnreturns the greater of a and b.
#include
#include
int main(void)
{
printf("%l", fmaxl (10,12));
}