Functions HI-TECH C EXP

EXP, LOG, LOG10, POW

SYNOPSIS

#include  <math.h>

double    exp(double f)
double    log(double f)
double    log10(double f)
double    pow(double x, y)


DESCRIPTION

Exp() returns the exponential function of its argument, log() the natural logarithm of f, and log10() the logarithm to base 10. Pow() returns the value of x raised to the y'th power.