[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppTrue
true 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]
CppTrue
(C++) true
Keyword. true and false are the two values that bool can contain.true 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
'true' links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
