abs, labs, llabs, imaxabs
From cppreference.com
Defined in header
<stdlib.h>
|
||
int abs( int n );
|
||
long labs( long n );
|
||
long long llabs( long long n );
|
(since C99) | |
Defined in header
<inttypes.h>
|
||
(since C99) | ||
Computes the absolute value of an integer number.
[edit] Parameters
n | - | integer value |
[edit] Return value
The absolute value of n
(i.e. |n|
)
[edit] See also
absolute value of a floating point value (|x|) (function) |
|