C / math.h / log10
acos, asin, atan, atan2, ceil, cos, cosh, exp, fabs, floor, fmod, frexp, ldexp, log, » log10, modf, pow, sin, sinh, sqrt, tan, tanh,
Funcion: log10()
Sintaxis:
double log10(double x);

Descripcion: Calcula el logaritmo en base 10 de x. Puede producirse un error de dominio si el argumento es negativo. Puede producirse un error de recorrido si el argumento es cero.


Ejemplo:
#include <stdio.h>
#include <math.h>
 
int main()
{
   double x = 6.54321;
 
   printf( "log10( %f ) = %f\n", x, log10(x) );
   return 0;
}

Librerias C

Librerias ANSI C
   string.hcstring
   math.hcmath
   stdio.hcstdio
   time.hctime
   stdlib.hcstdlib
   ctype.hcctype
   locale.hclocale
   signal.hcsignal
   setjmp.hcsetjmp

Librerias Borland
   conio.h
   graphics.h