Science, asked by politetaengwa05, 7 months ago

write a program to calculate of a rectangle

Answers

Answered by manishsinha9142
1

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