1) Determine and correct the errors in the following programs? (10 points) 1 #include 2 int main() 3-{ int le
Posted: Fri May 20, 2022 4:34 pm
1) Determine and correct the errors in the following programs? (10 points) 1 #include <iostream> 2 int main() 3-{ int length, width, area; 5 area = length * width; 6 6 length = 20; ; 7 width 15; 8 cout << "The area is area; 9 return ; 10} 11 12