How many times will the function counter() be executed in the following code?
function counter($start, &$stop)
{
if ($stop > $start)
return;
}
counter($start--, ++$stop);
$start = 5;
$stop = 2;
counter($start, $stop);
Limited Time Offer
25%
Off
Currently there are no comments in this discussion, be the first to comment!
Currently there are no comments in this discussion, be the first to comment!