?
What will be the output of the following PHP code ?
What will be the output of the following PHP code ?
<?php
for(;;)
{
print "10";
}
?>
<?php
for(;;)
{
print "10";
}
?>
Answer & Solution
Correct Answer:
Option
B
There is no check condition to stop the execution of the loop.
Join the Discussion
Login to post a comment or share your explanation.
Login