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

-1-1-1-1-1-1-1-1-1-1…infinitely
no output
00000000000000000000….infinitely
error

ANSWER DOWNLOAD EXAMIANS APP