bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

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:
Dtution-c/P7.c | 16----------------
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; -}
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror