CC Math
Math functions.
C Math
C provides many functions that allow you to perform mathematical tasks on numbers.
Math Header
To use these functions, you must add the #include <math.h> header file.
Common Functions
sqrt(x): Returns the square root of xceil(x): Rounds x upwards to the nearest integerfloor(x): Rounds x downwards to the nearest integerpow(x, y): Returns the value of x to the power of yabs(x): Returns the absolute value of x
Examples
Square Root
c exampleRounding
c example