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

25 Mar 2019

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

Anonymous

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