Any programming language includes many built-in functions that can be used in arithmetic expressions.
To use additional functions, you often need to include additional libraries.
For example, the most commonly used standard mathematical functions and their notation in C#.
Math.Abs(x) -
real module x;
Math.Sqrt(x) -
square root of a real number x;
Math.Pow(x,y) - < /code>calculates x to the power of y.
Remember that the function argument is always written in brackets.