#include <stdio.h> void main(){ int a = 5, b = 4; printf("a = %d b = %d/n", a, b); a ^= b; b ^= a; a ^= b; printf("a = %d b = %d/n", a, b);}