round, roundf, roundl헤더 파일[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - math.h double round(double x); 반올림, nearbyint와 같음float roundf(float x); 반올림, nearbyintf와 같음long double roundl(long double x); 반올림, nearbyintl과 같음 입력 매개 변수 리스트x 실수반환 값x 반올림 사용 예//C언어 표준 라이브러리 함수 가이드//double round(double x); 반올림, nearbyint와 같음//float roundf(float x); 반올림, nearbyintf와 같음//long double roundl(long double x); 반올림, nearbyintl과 ..