I was in a lecture and on the power point slides states that true would return 0 and false would return 1. I stated that in Visual Studio anything non zero is considered true, but is there a C++ standard that defines 0 as true?
Visual studio's results were disregarded as non standard but I doubt that it is.
bool tru = true; // returns 0
bool fal = false; // returns 1