/* Q9: Write a C++ Program to findout the area of the rectangle and display the result on screen. */ #include #include main() { clrscr(); float a,l,w; cout<<"\nEnter the length of the rectangle "; cin>>l; cout<<"\nEnter the width of the rectangle "; cin>>w; a = l * w; cout<<"\n\nArea of the rectange is "<