Chat with our AI personalities
Area of rectangle = length * breadth
#include<stdio.h> void main() { float length, breadth, area, perimeter; printf("Enter the length & breadth of a Rectangle\n(length breadth): "); scanf("%f %f",&length,&breadth); area=length*breadth; perimeter=2*(length+breadth); printf(" Area of the Rectangle=%0.3f\n",area); printf("Perimeter of the Rectangle=%0.3f\n",perimeter); printf("(Press ENTER to exit.)"); getch(); printf("\n"); }
If the breadth of the rectangle is 2, then its length is 5. which means that the area is 10 square units.
That is how the concept of area is defined!
int length int breadth int area= (length x breadth) print area