3.4. CompositionΒΆ

Just as with mathematical functions, C++ functions can be composed, meaning that you use one expression as part of another. For example, you can use any expression as an argument to a function:

double x = cos (angle + pi / 2);

This statement takes the value of pi, divides it by two and adds the result to the value of angle. The sum is then passed as an argument to the cos function.

You can also take the result of one function and pass it as an argument to another:

This program finds the log base e of 10 and raises e to that power. The result of this computation is assigned to x.

You have attempted of activities on this page