Challenge: Perform the Calculation
Let’s create a calculator using variadic arguments.
We'll cover the following...
Problem statement
Assume that the following enum is already defined:
enum Operation { add, subtract, multiply, divide }
Also, assume that there is a struct that represents the calculation of an operation and ...
Ask