employer cover photo
employer logo
employer logo

Panacea Medical Technologies

Is this your company?

Panacea Medical Technologies interview question

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

Interview Answers

Anonymous

Mar 25, 2019

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

Anonymous

Jun 4, 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