Q. What will be the output?
Code:
$a = 1; $b = &$a; $c = &$b; $c = 5; echo $a;
β
Correct Answer: (B)
5
Explanation: All variables reference same value.