From cf68f404c6778c8fea64d1ea569a2db46c8f6230 Mon Sep 17 00:00:00 2001 From: Shubham130402 <56781984+Shubham130402@users.noreply.github.com> Date: Mon, 28 Oct 2019 14:35:37 +0530 Subject: [PATCH] Create swap no. change --- C/swap no. change | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 C/swap no. change diff --git a/C/swap no. change b/C/swap no. change new file mode 100644 index 0000000..87b6415 --- /dev/null +++ b/C/swap no. change @@ -0,0 +1,13 @@ +#include +#include +void main() +{ +int a,b,temp; +printf("enter values"); +scanf("%d%d",&a,&b); +temp=a; +a=b; +b=temp; +printf("after swap %d%d",a,b); +getch(); +}