What will be the output of the following PHP code?
<?php function 2myfunc() { echo "Hello World"; } 2myfunc(); ?>
Answer: c Explanation: Function cannot begin with a number.