Computer Science, asked by niladri1728, 4 months ago

Type an algorithm to find the area of rectangle c.s

Answers

Answered by krishrocker7
0

Answer:

hope it helps

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);

}

Similar questions