C Tutorial/math.h/log10
Версия от 14:21, 25 мая 2010; (обсуждение)
log10
Item Value Header file math.h Declaration float log10f(float num);double log10(double num);long double log10l(long double num); Return returns the base 10 logarithm for num.
#include <math.h>
#include <stdio.h>
int main(void)
{
double val = 1.0;
do {
printf("%f %f\n", val, log10(val));
val++;
} while (val<11.0);
return 0;
}