bsc

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

commit 65b15752e24a9c58000c984cbb0a105c0d03d34b
parent a1f5bcc709c770a6e782b097a98d8c682404f683
Author: Amit Dutta <amitdutta4255@gmail.com>
Date:   Sun, 14 Sep 2025 19:08:20 +0530

Delete tution-c/APC1.c
Diffstat:
Dtution-c/APC1.c | 21---------------------
1 file changed, 0 insertions(+), 21 deletions(-)

diff --git a/tution-c/APC1.c b/tution-c/APC1.c @@ -1,21 +0,0 @@ -// WAP to perform arithmatic operation on integer data - -#include<stdio.h> -int main() { - int a, b, sum, sub, multi, div, mod; - printf("Enter 1st number : "); - scanf("%d", &a); - printf("Enter 2nd number : "); - scanf("%d", &b); - sum = a + b; - sub = a - b; - multi = a * b; - div = a / b; - mod = a % b; - printf("\nSum = %d", sum); - printf("\nSubtraction = %d", sub); - printf("\nMultiplication = %d", multi); - printf("\nDivision = %d", div); - printf("\nModulas = %d", div); - 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