Write a program to calculate the area of rectangle and Square
Answers
Answered by
2
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:
stay bless
Similar questions
Geography,
1 month ago
Math,
3 months ago
Computer Science,
10 months ago
English,
10 months ago
Economy,
10 months ago