commit bbd5735f19c7364298d5f31f4c4e0e60f4b75b9f
parent 647e875da748a0daa6f8841f25876e483cc87e41
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Sun, 14 Sep 2025 20:36:46 +0530
Delete tution-c/APC-SPS-2.c
Diffstat:
1 file changed, 0 insertions(+), 13 deletions(-)
diff --git a/tution-c/APC-SPS-2.c b/tution-c/APC-SPS-2.c
@@ -1,13 +0,0 @@
-/* WAP to swap two integers. Display both numbers
-before and after swap */
-
-#include<stdio.h>
-int main() {
- int a = 10, b = 20, temp;
- printf("Before swap A : %d, B : %d", a, b);
- temp = a;
- a = b;
- b = temp;
- printf("\nAfter swap A : %d, B : %d", a, b);
- return 0;
-}