"/>
<?phpfunction 2myfunc(){ echo "Hello World";}2myfunc();?>
<?php
function 2myfunc()
{
echo "Hello World";
}
2myfunc();
?>
Hello World
No Output
ERROR
None of the mentioned
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
Function cannot begin with a number.
Be The First To Comment