Functions HI-TECH C FABS

Revision as of 19:29, 31 July 2017 by Kumokosi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

FABS, CEIL, FLOOR

SYNOPSIS

#include  <math.h>

double    fabs(double f)
double    ceil(double f)
double    floor(double f)


DESCRIPTION

These routines return respectively the absolute value of f, the smallest integral value not less than f, and the largest integral value not greater than f.