Questions as in the topic how can I calculate the natural lagarithm from some number. I didn't notice the function in math.h. and what is the name of the function

Czy wolisz polską wersję strony elektroda?
Nie, dziękuję Przekieruj mnie tamMARIO159 wrote:Questions as in the topic how can I calculate the natural lagarithm of some number. I didn't notice the function in math.h. and what is the name of the function![]()
Quote:NAME
log - natural logarithm function
SYNOPSIS
#include
double log(double x);
DESCRIPTION
The log() function computes the natural logarithm of x, loge(x). The value of x must be positive.
for (wynik = 0; x > 1; wynik++, x >>= 1)
;