commit 8dc51e5a4cc76212940855e944c6f0cd920c8550
parent 3b18c55529d42d102c69796257bd7aa019699dc1
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Mon, 22 Sep 2025 20:44:55 +0530
Update APC-PRAC-001.c
Diffstat:
1 file changed, 0 insertions(+), 13 deletions(-)
diff --git a/tution-c/APC-PRAC-001.c b/tution-c/APC-PRAC-001.c
@@ -1,14 +1 @@
-
-#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;
-
-}