Exchange the value of $a=20 & $b=30 this variables without creating any new variable ?
$a=20;$b=30;
$a=20;
$b=30;
Thanks for contributing an answer!
\(........\)
Avoid writing here -
You can create logic like this
b=a+b (50)
a=b-a (50-20=30)
b=b-a (50-30=20)
'
$b=$a+$b; $a=$b-$a; $b=$b-$a;
Amazingggggg , which language should i learn first ?
382 questions
257 answers
105 comments
155 users