Answers for "how to get log 10 in c++"

C++
7

c++ natural log

#include <math.h>       /* log */

 double param, result;
  param = 10;
  result = log (param);
  printf ("log(%f) = %f\n", param, result );
Posted by: Guest on June-09-2020
0

log base 10 c+_+

double log10(double x)
Posted by: Guest on June-11-2020

Browse Popular Code Answers by Language