WAP to find the area of rectangle by taking length and breadth as inputs
WAP to find the area of rectangle by taking length and breadth as inputs
#include<stdio.h>
#include<conio.h>
void main()
{ clrscr();
float l,b,r;
printf("Area of Rectangle\n");
printf("Enter the length");
scanf("%f",&l);
printf("Enter the Breath");
scanf("%f",&b);
r=l*b;
printf("Area of the Rectangle is %f",r,"square meter");
getch();
}