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 28 problems.

Stats

842
EtPoint
205
Vote count
36
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;
}