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 mar 2019

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

Anónimo

4 jun 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