Write a C program to input any two numbers from user and swap values of both numbers using bitwise operator. How to swap two number using bitwise operator in C programming. Logic to swap two numbers using bitwise operator in C programming.
Example
Input
Input first number: 22 Input second number: 65
Output
First number after swapping: 65 Second number after swapping: 22