[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppFalse
false is not supported in all C programming environments. As a workaround you could preferably use:
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppFalse
(C++) false
Keyword. true and false are the two values that bool can contain.false is not supported in all C programming environments. As a workaround you could preferably use:
const int false = 0; const int true = 1;or using macro's:
- define FALSE 0
- define TRUE 1
'false' links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
