Saved Bookmarks
| 1. |
Write a program in c language to get area and perimeter of rectangle |
|
Answer» Answer: To FIND the area of RECTANGLE we multiply it's Length and Width. To find the perimeter of a rectangle, we should add the length of all four SIDES of rectangle. As OPPOSITE sides of a rectangle are equal we can calculate perimeter of rectangle as follows: Perimeter of Rectangle = 2 X (L + W) |
|