commit 79a478c32d70d89444e067af4ac8d0d76f47b6ef
parent 3305201bdd74d68abcfecf611656b46bc86993ce
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Sun, 14 Sep 2025 20:13:43 +0530
Delete tution-c/P3.c
Diffstat:
1 file changed, 0 insertions(+), 15 deletions(-)
diff --git a/tution-c/P3.c b/tution-c/P3.c
@@ -1,15 +0,0 @@
-//WAP to perform addtion and multiplication of two integer numbers
-
-#include<stdio.h>
-int main() {
- int a, b, sum, multi;
- printf("Enter the 1st number : ");
- scanf("%d",&a);
- printf("Enter the 2nd number : ");
- scanf("%d",&b);
- sum = a + b;
- multi = a * b;
- printf("\nSum = %d"
- "\nMultiplication = %d",sum,multi);
- return 0;
-}