What is the value of cube after the following code executes?
double cube, side;
side =5.0;
cube = pow ( side, 3.0);
0
15.0
125.0
25.0
unknown
What is the value of cube after the following code executes? double cube,side; side=5.0; cube = pow(side, 3.0;
8.0
15.0
125.0 O 25.0 unknown