Swap two numbers without using third variable?
Swap two numbers without using third variable?
swap two numbers without using third variable in python | swap two numbers without using third variable in c# | java program to swap two numbers without using third variable | swap two numbers without using third variable in javascript | swap two numbers without using third variable in c++ | c program to swap two numbers without using third variable using functions | algorithm for swapping of two numbers without using third variable
swap two numbers without using third variable in python | swap two numbers without using third variable in c# | java program to swap two numbers without using third variable | swap two numbers without using third variable in javascript | swap two numbers without using third variable in c++ | c program to swap two numbers without using third variable using functions | algorithm for swapping of two numbers without using third variable
swap two numbers without using third variable in python | swap two numbers without using third variable in c# | java program to swap two numbers without using third variable | swap two numbers without using third variable in javascript | swap two numbers without using third variable in c++ | c program to swap two numbers without using third variable using functions | algorithm for swapping of two numbers without using third variable
swap two numbers without using third variable in python | swap two numbers without using third variable in c# | java program to swap two numbers without using third variable | swap two numbers without using third variable in javascript | swap two numbers without using third variable in c++ | c program to swap two numbers without using third variable using functions | algorithm for swapping of two numbers without using third variable
swap two numbers without using third variable in python | swap two numbers without using third variable in c# | java program to swap two numbers without using third variable | swap two numbers without using third variable in javascript | swap two numbers without using third variable in c++ | c program to swap two numbers without using third variable using functions | algorithm for swapping of two numbers without using third variable
swap two numbers without using third variable in python | swap two numbers without using third variable in c# | java program to swap two numbers without using third variable | swap two numbers without using third variable in javascript | swap two numbers without using third variable in c++ | c program to swap two numbers without using third variable using functions | algorithm for swapping of two numbers without using third variable swap two numbers without using third variable in python swap two numbers without using third variable in c# java program to swap two numbers without using third variable swap two numbers without using third variable in javascript swap two numbers without using third variable in c++ c program to swap two numbers without using third variable using functions algorithm for swapping of two numbers without using third variable
Share
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a=20, b=40;
printf(“Before swap a=%d b=%d”,a,b);
a=a*b;
b=a/b;
a=a/b;
printf(“\nAfter swap a=%d b=%d”,a,b);
return 0;
}