imaxabs
모든 크기의 정수의 절대 값을 계산합니다.
intmax_t imaxabs(
intmax_t n
);
매개 변수
- n
정수 값입니다.
반환 값
imaxabs 함수는 인수의 절대 값을 반환합니다. 반환되는 오류가 없습니다.
참고
intmax_t 사용으로 표시될 수 있는 음의 정수의 범위가 양의 정수의 범위보가 더 크기 때문에 변환될 수 없는 imaxabs에 인수를 제공할 수 있습니다.인수의 절대 값이 반환 형식으로 표시될 수 없을 경우 imaxabs의 행동은 정의되지 않습니다.
요구 사항
루틴 |
필수 헤더 |
---|---|
imaxabs |
<inttypes.h> |
호환성에 대한 자세한 내용은 호환성을 참조하십시오.
라이브러리
모든 버전의 C 런타임 라이브러리입니다.
예제
// crt_imaxabs.c
// Build using: cl /W3 /Tc crt_imaxabs.c
// This example calls imaxabs to compute an
// absolute value, then displays the results.
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
int main(int argc, char *argv[])
{
intmax_t x = LLONG_MIN + 2;
printf("The absolute value of %lld is %lld\n", x, imaxabs(x));
}