InterviewSolution
Saved Bookmarks
| 1. |
Write a program to find area of a rectangle whose length and breadth is entered by the user.Correct answer will be marked as brainliest. |
|
Answer» C PROGRAM #include int MAIN() { int width=5; int height=10; int area=width*height; printf("Area of the rectangle=%d",area); } Explanation: if is this answer was HELPFUL then please mark me has brainlist and FOLLOW me |
|