Use C++:
Assume the following variable definitions appear in a program:
double base = 10.0;
double result;
1. Write a statement that uses the pow function to raise the base variable to the power of 5, and assigns the result to the result variable. (Assume that the program includes the necessary header file for the pow function.)