A
Q. What will be the output of the following PHP code ?
Code:
<?php
$k = 10;
while ($k < 30)
{
$k++;
}
print $k;
?>
$k = 10;
while ($k < 30)
{
$k++;
}
print $k;
?>
- Correct Answer - Option(A)
- Views: 12
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.