araa =L*b;
print ('the area of a rectangle is;ar);
Answers
Answer:
The area of any shape is the number of unit squares that can fit into it. Here "unit" refers to one (1) and a unit square is a square with a side of 1 unit. So, the area of a rectangle is the number of unit squares within the boundary of the rectangle. Alternatively, the space occupied within the perimeter of a rectangle is called the area of the rectangle. One good example of a rectangle shape is the square tiles of unit length in your house. You can easily figure out how much space the floor occupies by counting the number of tiles. This will also help you determine the area of the rectangular floor.
Program for rectangle area -
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
Explanation:
Area of the rectangle=50