-

Changes

Jump to: navigation, search

Functions HI-TECH C EXP

449 bytes added, 19:14, 31 July 2017
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,..."
<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, y)


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

Navigation menu