C Program to Swap two numbers using Pointers

Swapping the values of two variables is a common task in programming. In C pointers provide an option to indirectly manipulate variables’ values, Enabling us to swap the values of two variables by using pointers. In this article, we are going to write a C program to swap two numbers using pointers. Pointers in C … Read more