fmax, fmaxf, fmaxl 함수

double fmax(double x, double y); 최댓값

float fmaxf(float x, float y); 최댓값

long double fmaxl(long double x, long double y); 최댓값

입력 매개 변수 리스트

x 실수

y 실수

반환 값

x, y 중에 큰 수

사용 예

//C언어 표준 라이브러리 함수 가이드
//double fmax(double x, double y); 최댓값
//float fmaxf(float x, float y); 최댓값
//long double fmaxl(long double x, long double y); 최댓값

#include <math.h>
#include <stdio.h>
int main(void)
{
    printf("%f\n", fmax(1.0, 1.1));
    printf("%f\n", fmax(1.0, 0.1));

    return 0;
}

출력

1.100000
1.000000