commit 647e875da748a0daa6f8841f25876e483cc87e41
parent ba73502571fe44aa0dccd23f148cbe2109eb4527
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Sun, 14 Sep 2025 20:36:38 +0530
Delete tution-c/APC-SPS-1.c
Diffstat:
1 file changed, 0 insertions(+), 21 deletions(-)
diff --git a/tution-c/APC-SPS-1.c b/tution-c/APC-SPS-1.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;
-}