Computer Science, asked by ziaaqsa9, 1 year ago

Use the Predifined functions.
to solve this question:
Log 10 (10000.0)​

Answers

Answered by ranyodhmour892
0

Answer:

In this article, we are going to learn about the pre-defined functions (log() and log10()) of math.h header file to calculate the log value of any decimal as well as integer value in C programming language.

Submitted by Manu Jemini, on March 17, 2018

If you are making a complex mathematical program than invariably you will need log() and log to the base 10’s value. To make use of these useful functions in your program, you should have math.h file included in your program. That will make these two functions available for us to use.

Now, to use log() function all you will do is pass a number of which you want the value of log. This function will return you the log value of that number.

Similarly, just like log() function, log10() will need a number to be passed as a parameter of which you want the log value. That function will also return a number which can be stored for further usage.

You should know the difference between the log and log10 in mathematics.

Answered by shrutisharma4567
2

REFER THIS ATTACHMENT GIVE ABOVE

REFER THIS ATTACHMENT GIVE ABOVEPLZ MARK IT AS BRAINLIEST!!!

Attachments:
Similar questions