lround, lroundf, lroundl, llround, llroundf, llroundl헤더 파일[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - math.h long int lround(double x); 반올림, lrint와 같음long int lroundf(float x); 반올림, lrintf와 같음long int lroundl(long double x); 반올림, lrintl과 같음long long int llround(double x); 반올림, llrint와 같음long long int llroundf(float x); 반올림, llrintf와 같음long long int llroundl(long double x); 반올림, llrintl과 같음 입력 매개 변수 리스트x 실수..