In a simple way a Library is collection of builtin functions.One of the header file of standard C library is "math.h".As the name itself suggests,It defines various mathematical functions.The noticable thing is that all the arguements and return types of the functions of this header file is double.In this post we will discuss about power and exponentiation functions in this header file.
Table of contents:
double pow(double x,double y)double exp(double x)double pow(double x,double y)
Unlike ...
Published on November 07, 2021 05:08