write an algorithm to print area of rectangle
Answers
Answered by
0
Answer:
Hope this will help you.
Attachments:
Answered by
0
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