wap to find out area perimeter of a rectangle
Answers
Answered by
26
Explanation:
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);
Answered by
1
Answer:
use the formula :- 2(L+B)
Explanation:
Where L is your length and B is your breath
Pls mark it as branliest
Similar questions