wap to input length and breadth and find the area of rectangle
Answers
Answered by
0
Answer:
Program
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
Similar questions