Computer Science, asked by sr000751Efaa, 21 days ago

Write a program to calculate the area and perimeter of
rectangle.

Answers

Answered by supisahu42
0

Answer:

Area of a rectangle= length×breadth

Perimeter of rectangle= 2(Length+Breadth)

Answered by Maadhushree
1

Answer:

C

#include<stdio.h>

int main()

{ float a , b, c, d ,perimeter;

a= c= 5;

b=d= 4;

perimeter = 2*(a+b);

printf("\n\n Perimeter of Rectangle is : %f",perimeter);

return (0);

Explanation:

I HOPE IT HELPS YOU

PLZ MARK ME AS BRAINLIEST

Similar questions