From WikiChip
Difference between revisions of "c/math functions"
< c

Line 2: Line 2:
 
While [[basic arithmetics - C|basic arithmetics]] works well for many tasks, sometimes more complex math is needed. C provides a set of '''math functions''' for performing some common math operations which include trigonometric functions, exponential and logarithmic functions, power and absolute-value functions, and nearest integer functions.
 
While [[basic arithmetics - C|basic arithmetics]] works well for many tasks, sometimes more complex math is needed. C provides a set of '''math functions''' for performing some common math operations which include trigonometric functions, exponential and logarithmic functions, power and absolute-value functions, and nearest integer functions.
  
The function prototype and macro definitions for the math functionality discussed in this article can be can accessed by including the <math.h> standard header.
+
The function prototype and macro definitions for the math functionality discussed in this article can be can accessed by including the [[math.h - C|<math.h>]] standard header.

Revision as of 13:23, 28 December 2013

While basic arithmetics works well for many tasks, sometimes more complex math is needed. C provides a set of math functions for performing some common math operations which include trigonometric functions, exponential and logarithmic functions, power and absolute-value functions, and nearest integer functions.

The function prototype and macro definitions for the math functionality discussed in this article can be can accessed by including the <math.h> standard header.