Skip to content

Latest commit

 

History

History
79 lines (58 loc) · 2.12 KB

File metadata and controls

79 lines (58 loc) · 2.12 KB
title description ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
imaxabs
API reference for imaxabs, which calculates the absolute value of an integer of any size.
04/05/2018
imaxabs
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-utility-l1-1-0.dll
DLLExport
apiref
imaxabs
imaxabs function
de2566a3-1415-4e9a-91b5-7ac3a49ebf5e

imaxabs

Calculates the absolute value of an integer of any size.

Syntax

intmax_t imaxabs(
   intmax_t n
);

Parameters

n
Integer value.

Return value

The imaxabs function returns the absolute value of the argument. There's no error return.

Note

Because the range of negative integers that can be represented by using intmax_t is larger than the range of positive integers that can be represented, it's possible to supply an argument to imaxabs that can't be converted. If the absolute value of the argument cannot be represented by the return type, the behavior of imaxabs is undefined.

Requirements

Routine Required header
imaxabs <inttypes.h>

For more compatibility information, see Compatibility.

Libraries

All versions of the C run-time libraries.

Example

// 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));
}
The absolute value of -9223372036854775806 is 9223372036854775806

See also

Data conversion
Math and floating-point support
abs, labs, llabs, _abs64
_cabs
fabs, fabsf, fabsl