/* File: main16.c Name: CMSC104 Section 4 Classwork 16 Tuesday 10/25/2011 */ #include /* Insert the function prototype for isBiggerThanShoeBox() here */ /* Do not change the main progam */ int main() { float h, l, w ; printf("Enter the dimension of your shoebox.\n") ; printf("Enter height: ") ; scanf("%f", &h) ; printf("Enter length: ") ; scanf("%f", &l) ; printf("Enter width: ") ; scanf("%f", &w) ; if (isBiggerThanShoeBox(h, l, w) ) { printf("Yes, your box is larger than a shoebox\n") ; } else { printf("No, your box is smaller than a shoebox\n") ; } return 0 ; } /* end of main program */ /* Insert your implementation of isBiggerThanShoeBox() below */