It's easy !


void swap(int *_a, int *_b)
{
*_a=*_a+*_b;
*_b=*_a-*_b;
*_a=*_a-*_b;
}