J
Q. What will be the output of the following PHP code ?
Code:
<?php
$t = 20;
do
{
$t++;
}
while ($t < 60);
print $t;
?>
$t = 20;
do
{
$t++;
}
while ($t < 60);
print $t;
?>
- Correct Answer - Option(B)
- Views: 22509
- Filed under category PHP
Discusssion
Login to discuss.