Constants



FALSE


const int FALSE = 0;
Discussion

Define FALSE as a boolean type, if it's not already.


TRUE


const int TRUE = (!FALSE);
Discussion

Define TRUE as a boolean type, if it's not already.

(Last Updated 9/24/2004)