1.

What will be the output of the following PHP code?
<?php
function n()
{
function m()
{
echo 'M';
}
echo 'N';
}
m();
n();
?>

A. Nothing
B. Error
C. M
D. N
E. None of these
Answer» C. M


Discussion

No Comment Found

Related MCQs