In C++ Please:
Assume the following variable definition appears in a program:
double number = 125;
double result;
1. Write a statement that uses the sqrt function to get the square root of the number variable, and assigns the result to the result variable. (Assume that the program includes the necessary header file for the sqrt function.)