Interview question: Which one will execute faster, if (flag==0) or if (0==flag)? Why?
if (flag==0)
if (0==flag)
Build two simple programs using the suggested ways.
Assemble the codes. Look at the assembly and you can judge, but I doubt there is a difference!
Interviews are getting lower than ever.