Computer Science, asked by Waqarg2703, 1 year ago

a = '1';$b = &$a;$b = "2$b";echo $a.", ".$b; what is output

Answers

Answered by rajsingh22
0

if you understand that any change to $a or $b changes the other as well. So you will see that the result must be

21,21

Similar questions