Enter Values
num1 :
num2 :
Swapping
Simulation
First Number
Second Number
Code
#include < stdio.h >
#include < conio.h >
int main(){
int a, b, temp;
temp = a;
a = b;
b = temp;
return 0 ;
}
Memory
temp
num1
num2