commit 52c278a77ebddda0ff0b5d9a0ece4309660ff300
parent 4fbaded570d87b8ade1df61240bb49b97cfd77c7
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Sun, 14 Sep 2025 20:14:21 +0530
Delete tution-c/P7.c
Diffstat:
1 file changed, 0 insertions(+), 16 deletions(-)
diff --git a/tution-c/P7.c b/tution-c/P7.c
@@ -1,16 +0,0 @@
-/* A shopkeeper offers 10% discount on printed
-price of a digital camera. However a customer has
-to pay 6% GST on the remaining amount. WAP to
-calculate and display the amount to paid by the
-customer, taking the printed price as input. */
-
-#include<stdio.h>
-int main() {
- double mrp, final_price, temp;
- printf("Enter the printed price : ");
- scanf("%lf", &mrp);
- temp = mrp * 0.90;
- final_price = temp * 1.06;
- printf("\nCustomer have to pay : %lf", final_price);
- return 0;
-}