Function definition: Volume of a pyramid with modular functions. Define a function CalcPyramidVolume with double data type parameters baseLength, baseWidth, and pyramid Height, that returns as a double the volume of a pyramid with a rectangular base. CalcPyramidVolume() calls the given CalcBaseArea() function in the calculation. Relevant geometry equations: Volume = base area x height x 1/3 Base area = base length x base width. (Watch out for integer division). 3836242581574 Ong? 1 #include 3 double CalcBaseArea(double basetength, double basewidth) ( 4 return baseLength basewidth; 5) 6 7 V* Your solution goes here / 8 9 int main(void) { 10 double usertength; 11 double userWidth; 12 double userHeight; 13 14 scanf("%lf", &userLength); 15 scanf("%lf", &userwidth); 16 scanf("%1f", &userHeight); 17 18 printf("Volume: %1f\n", CalcPyramidvolume (usertength, userwidth, userHeight)); 19 DD 1 test passed