#include <stdlib.h>
int abs(int i);
abs() computes the absolute value of i.
The absolute value of i; i.e., i if i is positive and -i if i is negative. If i is -32768, this value is returned and errno is set to ERANGE.
fabs() and fabsf()