commit a6cba9713a512b015caf030532e78a6de11a0142
parent 83af356292aa0b840f1d5d3f1cfd5349b9a78cf7
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Mon, 22 Sep 2025 20:42:23 +0530
Delete tution-c/APC-PRAC-001.c
Diffstat:
1 file changed, 0 insertions(+), 16 deletions(-)
diff --git a/tution-c/APC-PRAC-001.c b/tution-c/APC-PRAC-001.c
@@ -1,15 +0,0 @@
-/* WAP to calculate area and perimeter of a rectangle
-by accepting length and breadth as input. */
-/* Author - Amit Dutta, Date - 18th SEP, 2025 */
-
-#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;
-}-
\ No newline at end of file