true (C++)
bool-identifier = true ;
bool-expression logical-operator true ;
설명
이 키워드는 형식의 변수에 대 한 두 개의 값 중 하나입니다 bool 또는 조건부 식 (조건식은 이제 true 부울 식).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);
}