perimeter and area of a rectangle with a height of 7 inches and width of 5 inches.
#include<stdio.h>
main()
{
int height=7,width=5,area,perimeter;
area=height*width;
printf("the area is %d",area);
perimeter=2*(height+width);
printf("\nthe perimeter of circle is %d",perimeter);
}
INFO