Computer Science, asked by rathishrethish319, 2 months ago

write an algorithm to print area of rectangle​

Answers

Answered by prosantpadma
0

Answer:

Hope this will help you.

Attachments:
Answered by mohdbilalkhan7865
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