Q. what is the output of below program?
Code:<?php
function hello(){
echo "hello";
hello();
}
hello();
?>
β
Correct Answer: (C)
hello is printed infinite times
<?php
function hello(){
echo "hello";
hello();
}
hello();
?>
You must be Logged in to update hint/solution