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

01234567891011121314…infinitely
error
no output
1234567891011121314….infinitely

ANSWER DOWNLOAD EXAMIANS APP