Possible Duplicate:
C++ and,or,not,xor keywords
I think the title says it, but to expand a little:
Is there a way to replace the && and || operators in your code with "AND" and "OR". It makes it a little more readable, and since im the only one working on the project, I am curious as to whether this can be done. This way instead of writing
if(is_close_enough(enemy) && attackReady(attack))
I can use
if(is_close_enough(enemy) AND attackReady(attack))
I am using VS2010 as my IDE and C++ as my language.
Thank you for your help