Posts Tagged ‘fabs’

abs, labs, llabs, imaxabs – compute the absolute value of an integer
USAGE
#include <stdlib.h>

int abs(int j);
long int labs(long int j);
long long int llabs(long long int j);

[...]

Wednesday, August 26th, 2009 at 01:33 | Comments Off
Categories: A, I, L
TOP