commit 191e935d011e7a9c72863f6b3b023918206330a1
parent 3a65a8495dbbdab66f9ea227416ab68927f12ea5
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Sun, 14 Sep 2025 20:14:02 +0530
Delete tution-c/P5.c
Diffstat:
1 file changed, 0 insertions(+), 14 deletions(-)
diff --git a/tution-c/P5.c b/tution-c/P5.c
@@ -1,14 +0,0 @@
-/* A person is paid Rs. 455 for each day he works and fined
-Rs. 150 for each day he remains absent. WAP to calculate his
-monthly income taking the number of days present as input. */
-
-#include<stdio.h>
-int main() {
- int daily_wage = 455, fine = 150, present, absent, income;
- printf("No of days present : ");
- scanf("%d", &present);
- absent = 30 - present;
- income = (present * 455) - (absent * 150);
- printf("\nIncome : %d",income);
- return 0;
-}