New repository
#include<stdio.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a+b;//a=30 (10+20)
b=a-b;//b=10 (30-20)
a=a-b;//a=20 (30-10)
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
-
Notifications
You must be signed in to change notification settings - Fork 0
farooq-star/swap-of-2-numbers-
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
New repository
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published