Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Rüppell's Vulture

Rüppell's Vulture

Rüppell's Vulture has asked 36 questions and find answers to 27 problems.

Stats

827
EtPoint
202
Vote count
36
questions
27
answers

About

11th May,2013,Evening :

#include<stdio.h>

int main(void)
{        
unsigned int a=234,b=789;
b=b^a;
a=b^a;
b=b^a;
printf("a=%d,b=%d",a,b);
return 0;
}