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