New paste Repaste Download
#include <stdio.h>
int main() {
int a, b;
printf("Enter first number: ");
scanf("%d", &a);
printf("Enter second number: ");
scanf("%d", &b);
a = a ^ b;
b = a ^ b;
a = a ^ b;
printf("The two integer numbers after swapping using bitwise operators:\n%d, %d\n", a, b);
return 0;
}
Filename: None. Size: 302b. View raw, , hex, or download this file.

This paste expires on 2025-03-01 08:09:53.516841. Pasted through web.