Feb 13, 2013 at 4:02pm
Hi all!
I've seen many time things like while(n) {...}
or if(n) {...}
.
What can it mean? Does it mean something such as “while variable n is undefined...”
I've tried searching, but I couldn't find the answer.
Can you help me? I'd appreciate it! :-)
Last edited on Feb 13, 2013 at 4:03pm
Feb 13, 2013 at 4:05pm
It means that the expression inside the while or the if statement is converted to type bool and the result is used that to take the decision.
Last edited on Feb 13, 2013 at 4:05pm
Feb 13, 2013 at 4:14pm
These conditions hold if n
is non-zero.