fmax, fmaxf, fmaxl헤더 파일[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - math.h 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 #include int ..