1.

What will be the output of the following PHP code ?
<?php
function calc()
{
$n = 5;
echo $n;
$n++;
}
calc();
calc();
calc();
?>

A. 5
B. Nothing
C. Error
D. 555
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs