Computer Science, asked by devineniakhil26, 2 months ago

program to compute area of a rectangle and area of a square.​

Answers

Answered by revesagain
1

#include <stdio.h>

int main()

{

int width=5;

int height=10;

int area=width*height;

printf("Area of the rectangle=%d",area);

}

Similar questions