commit ef6d16aea069d33750ccf9fa7c5df6c5c6e56065
parent 0944db32f4f97819416665ce051c8e3ee6929bce
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Sun, 21 Sep 2025 21:14:46 +0530
Add files via upload
Diffstat:
10 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/tution-c/APC-PRAC-001.c b/tution-c/APC-PRAC-001.c
@@ -0,0 +1,2 @@
+/* WAP to calculate area and perimeter of a rectangle
+by accepting and breadth as input. */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-002.c b/tution-c/APC-PRAC-002.c
@@ -0,0 +1,2 @@
+/* WAP to calculate area of a circle using math library
+method. Take radius of the circle as input. */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-003.c b/tution-c/APC-PRAC-003.c
@@ -0,0 +1 @@
+/* WAP to accept diagonal of a square and calculate area, parimeter */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-004.c b/tution-c/APC-PRAC-004.c
@@ -0,0 +1 @@
+/* WAP to calculate and display radius of a circle by taking the area as input. */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-005.c b/tution-c/APC-PRAC-005.c
@@ -0,0 +1 @@
+/* WAP a program that accept number of days as input and represent it as years, months and days. */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-006.c b/tution-c/APC-PRAC-006.c
@@ -0,0 +1 @@
+/* WAP that accept seconds as input and represent it an hours, minutes and seconds. */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-007.c b/tution-c/APC-PRAC-007.c
@@ -0,0 +1,6 @@
+/* WAP that accept basic salary of an employee and display gross salary, net salary generated by below formula.
+ DA = 25% of the basic salary.
+ HRA = 12.5% of the basic salary.
+ PF = 10% of the basic salary.
+ gross salary = basic salary + da + hra
+ net salary = gross salary - pf */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-008.c b/tution-c/APC-PRAC-008.c
@@ -0,0 +1 @@
+/* WAP to multiply and divide a number by 4 without using multiplication and division operator. */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-009.c b/tution-c/APC-PRAC-009.c
@@ -0,0 +1 @@
+/* WAP to swap two integer variable without using Third variable. */+
\ No newline at end of file
diff --git a/tution-c/APC-PRAC-010.c b/tution-c/APC-PRAC-010.c
@@ -0,0 +1,3 @@
+/* WAP to calculate and display the valve of the given expression :
+ (1/a^3) + (1/(b+2)^3) + (1/(c^4 + root(2)))
+ take a, b, c as input. */+
\ No newline at end of file