Is it okay to use “and”, “or” etc. instead of “&&”, “||”?
They are in fact standard in C++, as defined by the ISO 14882:2003 C++ standard 2.5/2 (and, indeed, as defined by the 1998 edition of the standard). Note that they are built into the language itself and don’t require that you include a header file of some sort. However, they are very rarely used, and … Read more