Q. what is the output of below program?
Code:
<?php
function hello(){
echo "hello";
hello();
}
hello();
?>
β
Correct Answer: (C)
hello is printed infinite times