Well I noticed recently that the more unusual bool operators arnt there. How would I use them?
Ex: xand, NAND, nor, etc.

These operators can easily be computed from the other operators:

if( a NAND b)
// is equivalent to:
if( ! (a && b) )

And so on for other operators. The C/C++ designers didn't see the point in having all operators, just the basic ones.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.