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.
Answers
Answered by
1
Answer:
C Program
#include <stdio.h>
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
Answered by
1
area of a triangle is length multiplied by breadth
Similar questions
India Languages,
3 months ago
Math,
7 months ago
Physics,
11 months ago
Physics,
11 months ago
Economy,
11 months ago