|
|
The C functions shown on the left below correspond to the mathematical functions shown on the right.
| double sqrt (double x); |
|
| double pow(double x, double y); |
|
| double exp (double x); | e
|
| double log (double x); | ln
|
| double log10 (double x); | log
|
| double fabs (double x); |
|
| double ceil (double x); | smallest integer not less than
|
| double floor (double x); | largest integer not greater than
|