/* * Find the mistake in the following program and correct it. * The program is intended to calculate the area of a triangle * using the formula: * * Area = 0.5 × Base × Height * * There is exactly ONE mistake in the code. */ #include int main() { float baseLength; float triangleHeight; printf("Enter the base of the triangle: "); scanf("%f", &baseLength); printf("Enter the height of the triangle: "); scanf("%f", &triangleHeight); triangleArea = 0.5 * baseLength * triangleHeight; printf("The area of the triangle is %.2f\n", triangleArea); return 0; }