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

Rüppell's Vulture

Rüppell's Vulture has asked 38 questions and find answers to 28 problems.

Stats

852
EtPoint
205
Vote count
38
questions
28
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;
}