Program to swap two numbers using third variable in C
The program will accept two numbers form the user "a" and "b" for swapping. For this purpose, we have to use a third variable "tmp". #include<stdio.h> #include<conio.h> void main() {…
The program will accept two numbers form the user "a" and "b" for swapping. For this purpose, we have to use a third variable "tmp". #include<stdio.h> #include<conio.h> void main() {…