Answers for "swap 2 not numerical variable without 3d variable"

C
4

swap without using third variable

// SWAPPING WITHOUT USING THIRD VARIABLE
#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;  
}   
Posted by: Guest on March-03-2021

Code answers related to "swap 2 not numerical variable without 3d variable"

Code answers related to "C"

Browse Popular Code Answers by Language