What will be the output of the following code -
function fn (&$var) { $var = $var - ($var/10*5); return $var; } echo fn(100);