This question was created from Week 3 Hands-On Lab
This question was created from Week 3 Hands-On Lab https://www.coursehero.com/file/13249840/Week-3-Hands-On-Lab/ Here is the original code: #include int main () { /* variable definition: */ float base, height, area; /* Prompt user for base */ printf(“Enter the base of the triangle: \n”); // Input the base scanf(“%f”, &base); /* Prompt user for height */ printf(“Enter the […]