In Time Tec interview question

swapping 2 numbers without using third variable

Interview Answer

Anonymous

Feb 2, 2018

$a='6₹'; $b='7₹'; list($a,$b)=array($b,$a); Try it.

8