log10 function in C
The log10 function in C computes the base-10 (common) logarithm of x. A domain error occurs if the argument is negative. A pole error may occur if the argument is zero. The x is the argument that is passed into the log10(). It is declared in math.h and takes one argument in the form of double and returns […]
log10 function in C Read More »