-

Functions HI-TECH C EXP

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 19:14, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>EXP, LOG, LOG10, POW</strong> ==SYNOPSIS== #include <math.h> double exp(double f) double log(double f) double log10(double f) double pow(double x,...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.