C Basic Programs

Swap two numbers using bitwise XOR operator ^

We can swap two numbers using the XOR operator. The result of the bitwise XOR operator is 1 if the corresponding bits of two operands are opposite. It is denoted by ^. To know more about working of XOR, refer to this tutorial: https://youtu.be/zkQuKuITyYo It can also be written as, As the order of evaluation of XOR…

Array

Array Merging

The way of combining two arrays into a single array is known as Array merging. In this program, we are going to merge the content of two arrays into a single array.

Array

Array Sorting

Sorting is a technique to arrange the elements in an order (increasing or decreasing). In this program, we are going to sort the content of an array using selection sort algorithm.