description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: true (C++) |
true (C++) |
11/04/2016 |
|
|
96be2a70-51c3-4250-9752-874d25a5a11e |
bool-identifier = true ;
bool-expression logical-operator true ;
This keyword is one of the two values for a variable of type bool or a conditional expression (a conditional expression is now a true boolean expression). If i
is of type bool
, then the statement i = true;
assigns true
to i
.
// bool_true.cpp
#include <stdio.h>
int main()
{
bool bb = true;
printf_s("%d\n", bb);
bb = false;
printf_s("%d\n", bb);
}
1
0