Skip to content

farooq-star/swap-of-2-numbers-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

swap-of-2-numbers-

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;
}

About

New repository

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published