Browsing tag

“math.h” header file

ceil function in C programming language

ceil function in C programming language In this tutorial, we will learn about ceil function in C programming language In the C Programming Language, the ceil()  returns the nearest integer value which is greater than or equal to the value of floating point passed value. Declaration Syntax The syntax of  the ceil() function in the…

floor function in C programming language

floor function in C programming language We will learn about floor function in C programming language In the C programming Language, the floor() function returns the nearest integer value which is less than or equal to the value for floating point argument to this function Declaration Syntax The syntax of  the floor()  in the C…

fabs Arithmetic function in C programming Language

fabs Arithmetic function in C programming Language We will learn about fabs Arithmetic function in C programming Language In the C Programming Language, the fabs() arithmetic function returns the absolute value of a floating point. Declaration Syntax The syntax of  the fabs() function in the C programming Language double fabs(double x); parameters or Argument x…

Arithmetic function in C programming language

Arithmetic function in C programming language We will learn about Arithmetic function in C programming language In the C Programming language, the Arithmetic function is used for arithmetic calculations and manipulations. The arithmetic function is used for the arithmetic purpose in C Language C programming language contains a lot of header files for various purposes….

log function in C programming language

log function in C programming language In this tutorial, we will discuss log function in the C programming language Description In the C programming language, the log() Arithmetic function returns the logarithm of x to the based of e log(): In C programming Language,log()  is used to perform  calculate natural logarithm of significant value Declaration…

log10 Arithmetic function in C Language

log10 Arithmetic function in C Language In this tutorial, we will discuss about  log10 Arithmetic function in C Language Description In the C programming language, the log10() Arithmetic function in C Language returns the logarithm of x to the base of 10 log10(): In C programming Language,log10() function is use to perform  calculate natural logarithm…

sqrt function in C programming language

sqrt function in C programming language In this tutorial, we will discuss sqrt function in C programming language Description description of sqrt  function in C programming  language: The sqrt()  function in C programming language  returns the square root value sqrt() : In C Programming Language, this   is used to find square root of the given…

pow function in C programming Language

pow function in C programming Language In this tutorial, we will discuss pow function in C programming Language Description Pow()  in C is used to find the power of the given number The pow() function in C programming language (C library function) returns x raised to the power of y pow(): In the C Programming…

trunc function in C programming language

trunc function in C programming language In this tutorial, we will discuss trunc  function in C programming language Description The trunc() math function in C programming language returns the truncated value from the floating point value and return integer value.. trunc() : This function truncates the decimal value from floating point value and returns an…

exp function in C programming language

exp function in C programming language Description In C programming language,  exp function in C.  returns the value of e raised to the xth power. exp() : In the C programming language, The exp() function calculates e raised to the power of x(given argument) ( calculate the exponential “e” to the xth power)   Declaration…