trunc, truncf, truncl 함수

double trunc(double x); 소수점 이하 자리 버림

float truncf(float x);  소수점 이하 자리 버림

long double truncl(long double x); 소수점 이하 자리 버림

입력 매개 변수 리스트

x 실수

반환 값

x의 정수 부분

사용 예

//C언어 표준 라이브러리 함수 가이드
//double trunc(double x); 소수점 이하 자리 버림
//float truncf(float x);  소수점 이하 자리 버림
//long double truncl(long double x); 소수점 이하 자리 버림

#include <math.h>
#include <stdio.h>
int main(void)
{
    printf("%f\n", trunc(1.4));
    printf("%f\n", trunc(1.5));
    return 0;
}

출력

1.000000
1.000000