Programming Languages
PHP
Objective
Mar 15, 2013
<?
php function zz(& $x)
{
$x=$x+5;
}
?>
$x=10;
zz($x);
echo $x;
Find the Output?
Detailed Explanation
Option C is the right answer.
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts