PHP Operators and Expressions
What will be the output of the following PHP code ?
$i = 5;
while (--$i > 0) {
$i++;
print $i;
print "hello";
}

4hello4hello4hello4hello4hello…..infinite
5hello5hello5hello5hello5hello…..infinite
no output
error

ANSWER DOWNLOAD EXAMIANS APP