C/math.h/fmax — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:22, 25 мая 2010
fmax: returns the greater of a and b
//Declaration: float fmaxf(float a, float b);
double fmax(double a, double b);
long double fmaxl(long double a, long double b);
#include <math.h>
#include <stdio.h>
int main(void)
{
printf("%l", fmaxl (10,12));
}