CliveC
I recommend using "&&" in conditions, not "and". The two operators have different precedence, so using "and" in a condition can sometimes lead to strage bugs. That "sometime" happens very infrequently, but when it does, it is a very subtle thing to debug.
I know from experience. I spent a day-and-a-half debugging a code problem where I had used "and". Replacing it with "&&" fixed the problem.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.