Question: which option is the correct answer for c language coding? 1 Consider the following program: void cubed_root(double x) 2 { 3 4 5 y -
1 Consider the following program: void cubed_root(double x) 2 { 3 4 5 y - pow(x, 1.0/3.0); 6 return y; 7 } NM double y; What is the problem with this function? (Assume that math.h has been included). A. The return data type of the cubed_root function on line 1 is incorrect B. "double x" needs to be declared within the function at line 3 C. The power of function is spelt incorrectly on line 5 D. A cast operation (double) is needed on line 5 A B c 0 D
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
