Question:What will be the output of the following code? function fn(&$var) { $var = $var - ($var/10 *5); return $var; } echo fn (100);
A 100 B 50 C 98 D Error message E None of the above
+ AnswerD
+ Report