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

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

ANSWER DOWNLOAD EXAMIANS APP