21.
Which PHP feature allows defining functions within other functions?
22.
What will be the output of the following PHP code?

<?php
function outer() {
function inner() {
echo "Inner function";
}
}
inner();
?>