int main ( void ) { int a=3, b=4; printf("avant : a=%d, b=%d\n",a,b); a ^= b ^= a ^= b; printf("apres : a=%d, b=%d\n",a,b); }