/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* WAP to calculate area and perimeter of a rectangle by accepting length and breadth as input. */ #include 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; }