A
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: 15
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.