Computer Science, asked by asthanasujita12, 3 months ago

Write a program to calculate the area of rectangle and Square​

Answers

Answered by sritharina4617
2

Answer:

C Program

#include <stdio.h>

int main()

{

int width=5;

int height=10;

int area=width*height;

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

}

Explanation:

stay bless

Similar questions