Table of Contents
Previous Section Next Section

llabs

#include <stdlib.h>long long int llabs(long long int num);

llabs( ) was added by C99.

The llabs( ) function returns the absolute value of num. It is similar to labs( ) except that it operates on values of type long long int.

Related functions are abs( ) and labs( ).


Table of Contents
Previous Section Next Section