Computer Science, asked by chandreyisaha1706200, 12 hours ago

wap to input length and breadth and find the area of rectangle​

Answers

Answered by shiva247810
0

Answer:

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