In this article we will learn to implement a C program to swap two numbers without using a temporary variable. A C program is provided below which reads two numbers and interchanges them with using a temporary variable. Program is as follows: //C program to swap two numbers without using a temporary variable #include<stdio.h> […]