employer cover photo
employer logo
employer logo

Priya Softweb Solutions

Is this your company?

Priya Softweb Solutions interview question

inter change value of two variable without using 3rd one.

Interview Answer

Anonymous

28 Feb 2025

int i = 10, j = 20; i = i + j; // i = 30 j = i - j; // j = 10 i = i - j; // i = 20