Vidyalelo
PHP · Q95

Operators And Expressions

Programming · PHP · question 95

Q95

What will be the output of the following PHP code ? 0) i++; print i; print "hello"; ?>

A.
4hello4hello4hello4hello4hello…..infinite
Answer
B.
5hello5hello5hello5hello5hello…..infinite
C.
no output
D.
error

Answer: Option A

Solution

Answer: Option A
Solution:
i is decremented in the first while execution and then continuously incremented back.