. Write a program to find the area of a rectangle for the given inputs of length and breadth
Answers
Answered by
1
Answer:
Make me as brain list
Explanation:
C Program
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
Answered by
2
Answer:
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
Similar questions