How to swap two variables, without using third variable ?
Hi this question was asked in my interview. Ans is : a=a+b; b=a-b; a=a-b; Any other solution?