#include <stdio.h>
int main(void)
{
//variable declaration
double A, w, h;
//display message
printf("\nEnter the length of first side of the rectangle:
");
//input the length of first side
scanf("%lf", &w);
//display message
printf("\nEnter the length of second side of the rectangle:
");
//input the length of second side
scanf("%lf", &h);
//calculate area of the rectangle
A = w * h;
//display the rectangle area
printf("\nArea of the rectangle is: %.2lf", A);
return 0;
}
Code screenshot:

OUTPUT:
Enter the length of first side of the rectangle: 12.50
Enter the length of second side of the rectangle: 19.00
Area of the rectangle is: 237.50
Quincy College CSI 116 91 - Introduction to Programming (Fall 2019) A question 5 [30pts]: The...