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» ong>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 |
|