exp10 (3) Linux Manual Page
NAME exp10, exp10f, exp10l – base-10 exponential function SYNOPSIS #define _GNU_SOURCE /* See feature_test_macros(7) */ #include <math.h> double exp10(double x); float exp10f(float x); long double exp10l(long double x); Link with -lm. DESCRIPTION These functions return the value of 10 raised to the power of x. RETURN VALUE On success, these functions return the base-10 exponential…
