A
Q. What will be the output of the following PHP code ?
Code:
<?php
$t = 0;
while($t < 5)
{
$t++;
print "Ajit ";
}
?>
$t = 0;
while($t < 5)
{
$t++;
print "Ajit ";
}
?>
- Correct Answer - Option(D)
- Views: 23
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.