Swap two Numbers using a variable

#include<stdio.h> #include<conio.h> void main() { int x = 10, y = 15, temp; temp = x; x = y; y = temp; printf("x = %d and y = %d", x,…

Comments Off on Swap two Numbers using a variable