commit 3b18c55529d42d102c69796257bd7aa019699dc1
parent 54b13cd1883b575c33d86c11368c1d4758d926fe
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Mon, 22 Sep 2025 20:43:56 +0530
Update APC-PRAC-001.c
Diffstat:
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/tution-c/APC-PRAC-001.c b/tution-c/APC-PRAC-001.c
@@ -1,6 +1,4 @@
-/* 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() {
@@ -12,4 +10,5 @@ int main() {
printf("\nArea of the Rectangle : %g"
"\nPerimeter of the Rectangle : %g", area, perimeter);
return 0;
-}-
\ No newline at end of file
+
+}