Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

give the function for ach of the folowing function: a. function hypotenuse that

ID: 3641893 • Letter: G

Question

give the function for ach of the folowing function:
a. function hypotenuse that takes two double argument side 1 and side 1 and returns double point result.
b. function smallest that takes three integers x,y,z, and return an integr.
c. function instruction that does not receive any argument and does not return a value.
d. function intofloat that takes an integer argument, numebr, and returns a double result.
e. function exercise thatv takes an integer argument, numebrs, and two double arguments( refrence parameters) a and b and returns a boolean.

Explanation / Answer

a. function hypotenuse that takes two double argument side 1 and side 1 and returns double point result. double hypotenuse(double side1, double side2) { double hypo; hypo = sqrt(side1*side1 + side2 * side2); //include math.h for the sqrt function return hypo; } b. function smallest that takes three integers x,y,z, and return an integr. int smallest(int x,int y,int z) { int smallValue; smallValue = (x