abs - integer absolute value
#include <stdlib.h> int abs(int i)
Abs returns the absolute value of its integer operand.
floor(3).
Applying the abs function to the most negative integer generates a result which is the most negative integer. That is, abs(0x80000000) returns 0x80000000 as a result on a machine with 32-bit ints. Using the result in unsigned computations is sound however.