apc-prac-001.c¶
Problem Statement
WAP to calculate area and perimeter of a rectangle by accepting length and breadth as input.
Metadata¶
| Property | Detail |
|---|---|
| Author | Amit Dutta (amitdutta4255@gmail.com) |
| License | MIT |
Actions¶
💡 You can print or save this file by opening Raw and using your browser.
Source Code¶
#include<stdio.h>
int main() {
double length, breadth, area, perimeter;
printf("Enter the length and breadth of the Rectangle : ");
scanf("%lf %lf", &length, &breadth);
area = length * breadth;
perimeter = 2 * (length + breadth);
printf("\nArea of the Rectangle : %g"
"\nPerimeter of the Rectangle : %g", area, perimeter);
return 0;
}