log (math function) in C.

 

01  #include <math.h>
02 #include <stdio.h>
03
04 int main()
05 {
06 double result;
07 double x = 8.6872;
08
09 result = log(x);
10 printf("The natural log of %lf is %lfn", x, result);
11
12 return 0;
13 }
 
 OUTPUT :

The natural log of 8.687200 is 2.161851

Related Post

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.