It would definitely be a bad idea to do this yourself.
If you really want names like and instead of symbols like &&, you can include the <iso646.h> C Standard Library header, which defines several named operators, including the three you mention.
In C++, the alternative representations (like and and or) are operators built into the language, so you don't need to include any header to use them, and it isn't possible to define them as macros (a macro name must be an identifier, and the alternative representations are operators, not identifiers, even during preprocessing).
#define BEGIN {and#define END }to your list... – mu is too short Feb 23 '11 at 19:34