Re: why the compiler behave differently for if(false) and while(false)
Posted By:
Almagest_FUTT
Posted On:
Wednesday, September 14, 2005 11:51 AM
Looks like the boolean condition of an if only gets evaluated at run-time, whereas the condition of a while gets pre-evaluated at compile-time. But the for's gets not (neither gets the do's, for obvious reasons).