Interview question: Which one will execute faster, if (flag==0) or if (0==flag)? Why?
if (flag==0)
if (0==flag)
When in doubt benchmark it and learn the truth.