Computes long long integer absolute value.
#include <stdlib.h> long long llabs(long long j);
j
Value from which to compute the absolute value.
llabs() returns the absolute value of its argument. Note that the two's complement representation of the smallest negative number has no matching absolute integer representation.
This function is not specified in the ISO/IEC standards. It is an extension of the standard library.