Pregunta de entrevista de Panacea Medical Technologies

How to swap two numbers without using inbuilt functions or another variable

Respuestas de entrevistas

Anónimo

25 de mar de 2019

Using multiplication and division-along with writing a code in C

Anónimo

4 de jun de 2019

a = a + b; // a is sum of both numbers now b = a - b; // b is a now a = a - b; // a is b now